Uses of Interface
com.carrotsearch.hppc.CharContainer
-
Packages that use CharContainer Package Description com.carrotsearch.hppc -
-
Uses of CharContainer in com.carrotsearch.hppc
Subinterfaces of CharContainer in com.carrotsearch.hppc Modifier and Type Interface Description interface
CharCollection
A collection allows basic, efficient operations on sets of elements (difference and intersection).interface
CharDeque
A linear collection that supports element insertion and removal at both ends.interface
CharIndexedContainer
An indexed container provides random access to elements based on anindex
.interface
CharLookupContainer
Marker interface for containers that can check if they contain a given object in at least timeO(log n)
and ideally in amortized constant timeO(1)
.interface
CharSet
A set ofchar
s.Classes in com.carrotsearch.hppc that implement CharContainer Modifier and Type Class Description (package private) class
AbstractCharCollection
Common superclass for collections.private class
ByteCharHashMap.ValuesContainer
A view over the set of values of this map.class
CharArrayDeque
An array-backedCharDeque
.class
CharArrayList
An array-backed list of chars.class
CharByteHashMap.KeysContainer
A view of the keys inside this hash map.class
CharCharHashMap.KeysContainer
A view of the keys inside this hash map.private class
CharCharHashMap.ValuesContainer
A view over the set of values of this map.class
CharDoubleHashMap.KeysContainer
A view of the keys inside this hash map.class
CharFloatHashMap.KeysContainer
A view of the keys inside this hash map.class
CharHashSet
A hash set ofchar
s, implemented using using open addressing with linear probing for collision resolution.class
CharIntHashMap.KeysContainer
A view of the keys inside this hash map.class
CharLongHashMap.KeysContainer
A view of the keys inside this hash map.class
CharObjectHashMap.KeysContainer
A view of the keys inside this hash map.class
CharScatterSet
Same asCharHashSet
but does not implement per-instance key mixing strategy and uses a simpler (faster) bit distribution function.class
CharShortHashMap.KeysContainer
A view of the keys inside this hash map.class
CharStack
A subclass ofCharArrayList
adding stack-related utility methods.private class
DoubleCharHashMap.ValuesContainer
A view over the set of values of this map.private class
FloatCharHashMap.ValuesContainer
A view over the set of values of this map.private class
IntCharHashMap.ValuesContainer
A view over the set of values of this map.private class
LongCharHashMap.ValuesContainer
A view over the set of values of this map.private class
ObjectCharHashMap.ValuesContainer
A view over the set of values of this map.private class
ShortCharHashMap.ValuesContainer
A view over the set of values of this map.Methods in com.carrotsearch.hppc that return CharContainer Modifier and Type Method Description CharContainer
ByteCharAssociativeContainer. 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
FloatCharAssociativeContainer. values()
Returns a container view of all values present in this container.CharContainer
IntCharAssociativeContainer. values()
Returns a container view of all values present in this container.CharContainer
LongCharAssociativeContainer. 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
ShortCharAssociativeContainer. values()
Returns a container view of all values present in this container.Methods in com.carrotsearch.hppc with parameters of type CharContainer Modifier and Type Method Description int
CharArrayList. addAll(CharContainer container)
Adds all elements from another container.int
CharHashSet. addAll(CharContainer container)
Adds all elements from the givenCharContainer
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.int
CharStack. pushAll(CharContainer container)
Pushes all elements from another container to the top of the stack.int
CharByteAssociativeContainer. removeAll(CharContainer container)
Removes all keys (and associated values) present in a given container.int
CharByteHashMap. removeAll(CharContainer other)
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
CharCharHashMap. removeAll(CharContainer other)
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
CharDoubleHashMap. removeAll(CharContainer other)
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
CharFloatHashMap. removeAll(CharContainer other)
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
CharIntHashMap. removeAll(CharContainer other)
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
CharLongHashMap. removeAll(CharContainer other)
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
CharObjectHashMap. removeAll(CharContainer other)
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
CharShortHashMap. removeAll(CharContainer other)
Removes all keys (and associated values) present in a given container.Constructors in com.carrotsearch.hppc with parameters of type CharContainer Constructor Description CharArrayDeque(CharContainer container)
Creates a new deque from elements of another container, appending elements at the end of the deque in the iteration order.CharArrayList(CharContainer container)
Creates a new list from the elements of another container in its iteration order.CharHashSet(CharContainer container)
New instance copying elements from anotherCharContainer
.CharStack(CharContainer container)
Create a stack by pushing all elements of another container to it.
-