|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use CharContainer | |
---|---|
com.carrotsearch.hppc | High Performance Primitive Collections (HPPC) library provides
typical data structures (lists, stacks, maps)
template-generated for all Java primitive types
(byte , int , etc.) to conserve
memory and boost performance. |
Uses of CharContainer in com.carrotsearch.hppc |
---|
Subinterfaces of CharContainer in com.carrotsearch.hppc | |
---|---|
interface |
CharCollection
A collection allows basic, efficient operations on sets of elements (difference and intersection). |
interface |
CharDeque
A double-linked queue of char s. |
interface |
CharIndexedContainer
An indexed container provides random access to elements based on an index . |
interface |
CharLookupContainer
Marker interface for containers that can check if they contain a given object in at least time O(log n) and ideally in amortized
constant time O(1) . |
interface |
CharSet
A set of char s. |
Classes in com.carrotsearch.hppc that implement CharContainer | |
---|---|
class |
CharArrayDeque
An array-backed deque (doubly linked queue) of chars. |
class |
CharArrayList
An array-backed list of chars. |
class |
CharByteOpenHashMap.KeysContainer
A view of the keys inside this hash map. |
class |
CharCharOpenHashMap.KeysContainer
A view of the keys inside this hash map. |
class |
CharDoubleOpenHashMap.KeysContainer
A view of the keys inside this hash map. |
class |
CharFloatOpenHashMap.KeysContainer
A view of the keys inside this hash map. |
class |
CharIntOpenHashMap.KeysContainer
A view of the keys inside this hash map. |
class |
CharLongOpenHashMap.KeysContainer
A view of the keys inside this hash map. |
class |
CharObjectOpenHashMap.KeysContainer
A view of the keys inside this hash map. |
class |
CharOpenHashSet
A hash set of char s, implemented using using open
addressing with linear probing for collision resolution. |
class |
CharShortOpenHashMap.KeysContainer
A view of the keys inside this hash map. |
class |
CharStack
An extension to ObjectArrayList adding stack-related utility methods. |
Methods in com.carrotsearch.hppc that return CharContainer | |
---|---|
CharContainer |
CharCharOpenHashMap.values()
|
CharContainer |
IntCharAssociativeContainer.values()
Returns a container view of all values present in this container. |
CharContainer |
FloatCharOpenHashMap.values()
|
CharContainer |
ShortCharAssociativeContainer.values()
Returns a container view of all values present in this container. |
CharContainer |
CharCharAssociativeContainer.values()
Returns a container view of all values present in this container. |
CharContainer |
DoubleCharAssociativeContainer.values()
Returns a container view of all values present in this container. |
CharContainer |
ByteCharAssociativeContainer.values()
Returns a container view of all values present in this container. |
CharContainer |
DoubleCharOpenHashMap.values()
|
CharContainer |
LongCharOpenHashMap.values()
|
CharContainer |
ObjectCharOpenHashMap.values()
|
CharContainer |
ShortCharOpenHashMap.values()
|
CharContainer |
IntCharOpenHashMap.values()
|
CharContainer |
LongCharAssociativeContainer.values()
Returns a container view of all values present in this container. |
CharContainer |
FloatCharAssociativeContainer.values()
Returns a container view of all values present in this container. |
CharContainer |
ObjectCharAssociativeContainer.values()
Returns a container view of all values present in this container. |
CharContainer |
ByteCharOpenHashMap.values()
|
Methods in com.carrotsearch.hppc with parameters of type CharContainer | |
---|---|
int |
CharArrayList.addAll(CharContainer container)
Adds all elements from another container. |
int |
CharOpenHashSet.addAll(CharContainer container)
Adds all elements from a given container to this set. |
int |
CharArrayDeque.addFirst(CharContainer container)
Inserts all elements from the given container to the front of this deque. |
int |
CharArrayDeque.addLast(CharContainer container)
Inserts all elements from the given container to the end of this deque. |
static CharArrayList |
CharArrayList.from(CharContainer container)
Create a list from elements of another container. |
static CharOpenHashSet |
CharOpenHashSet.from(CharContainer container)
Create a set from elements of another container. |
static CharStack |
CharStack.from(CharContainer container)
Create a stack by pushing all elements of another container to it. |
int |
CharStack.pushAll(CharContainer container)
Pushes all elements from another container to the top of the stack. |
int |
CharCharOpenHashMap.removeAll(CharContainer container)
Removes all keys (and associated values) present in a given container. |
int |
CharFloatAssociativeContainer.removeAll(CharContainer container)
Removes all keys (and associated values) present in a given container. |
int |
CharShortOpenHashMap.removeAll(CharContainer container)
Removes all keys (and associated values) present in a given container. |
int |
CharCharAssociativeContainer.removeAll(CharContainer container)
Removes all keys (and associated values) present in a given container. |
int |
CharObjectAssociativeContainer.removeAll(CharContainer container)
Removes all keys (and associated values) present in a given container. |
int |
CharIntAssociativeContainer.removeAll(CharContainer container)
Removes all keys (and associated values) present in a given container. |
int |
CharObjectOpenHashMap.removeAll(CharContainer container)
Removes all keys (and associated values) present in a given container. |
int |
CharShortAssociativeContainer.removeAll(CharContainer container)
Removes all keys (and associated values) present in a given container. |
int |
CharByteAssociativeContainer.removeAll(CharContainer container)
Removes all keys (and associated values) present in a given container. |
int |
CharIntOpenHashMap.removeAll(CharContainer container)
Removes all keys (and associated values) present in a given container. |
int |
CharLongAssociativeContainer.removeAll(CharContainer container)
Removes all keys (and associated values) present in a given container. |
int |
CharLongOpenHashMap.removeAll(CharContainer container)
Removes all keys (and associated values) present in a given container. |
int |
CharDoubleAssociativeContainer.removeAll(CharContainer container)
Removes all keys (and associated values) present in a given container. |
int |
CharDoubleOpenHashMap.removeAll(CharContainer container)
Removes all keys (and associated values) present in a given container. |
int |
CharByteOpenHashMap.removeAll(CharContainer container)
Removes all keys (and associated values) present in a given container. |
int |
CharFloatOpenHashMap.removeAll(CharContainer container)
Removes all keys (and associated values) present in a given container. |
Constructors in com.carrotsearch.hppc with parameters of type CharContainer | |
---|---|
CharArrayDeque(CharContainer container)
Creates a new deque from elements of another container, appending them at the end of this deque. |
|
CharArrayList(CharContainer container)
Creates a new list from elements of another container. |
|
CharOpenHashSet(CharContainer container)
Creates a hash set from elements of another container. |
|
CharStack(CharContainer container)
Create a stack by pushing all elements of another container to it. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |