Uses of Interface
com.carrotsearch.hppc.FloatContainer
-
Packages that use FloatContainer Package Description com.carrotsearch.hppc -
-
Uses of FloatContainer in com.carrotsearch.hppc
Subinterfaces of FloatContainer in com.carrotsearch.hppc Modifier and Type Interface Description interface
FloatCollection
A collection allows basic, efficient operations on sets of elements (difference and intersection).interface
FloatDeque
A linear collection that supports element insertion and removal at both ends.interface
FloatIndexedContainer
An indexed container provides random access to elements based on anindex
.interface
FloatLookupContainer
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
FloatSet
A set offloat
s.Classes in com.carrotsearch.hppc that implement FloatContainer Modifier and Type Class Description (package private) class
AbstractFloatCollection
Common superclass for collections.private class
ByteFloatHashMap.ValuesContainer
A view over the set of values of this map.private class
CharFloatHashMap.ValuesContainer
A view over the set of values of this map.private class
DoubleFloatHashMap.ValuesContainer
A view over the set of values of this map.class
FloatArrayDeque
An array-backedFloatDeque
.class
FloatArrayList
An array-backed list of floats.class
FloatByteHashMap.KeysContainer
A view of the keys inside this hash map.class
FloatCharHashMap.KeysContainer
A view of the keys inside this hash map.class
FloatDoubleHashMap.KeysContainer
A view of the keys inside this hash map.class
FloatFloatHashMap.KeysContainer
A view of the keys inside this hash map.private class
FloatFloatHashMap.ValuesContainer
A view over the set of values of this map.class
FloatHashSet
A hash set offloat
s, implemented using using open addressing with linear probing for collision resolution.class
FloatIntHashMap.KeysContainer
A view of the keys inside this hash map.class
FloatLongHashMap.KeysContainer
A view of the keys inside this hash map.class
FloatObjectHashMap.KeysContainer
A view of the keys inside this hash map.class
FloatScatterSet
Same asFloatHashSet
but does not implement per-instance key mixing strategy and uses a simpler (faster) bit distribution function.class
FloatShortHashMap.KeysContainer
A view of the keys inside this hash map.class
FloatStack
A subclass ofFloatArrayList
adding stack-related utility methods.private class
IntFloatHashMap.ValuesContainer
A view over the set of values of this map.private class
LongFloatHashMap.ValuesContainer
A view over the set of values of this map.private class
ObjectFloatHashMap.ValuesContainer
A view over the set of values of this map.private class
ShortFloatHashMap.ValuesContainer
A view over the set of values of this map.Methods in com.carrotsearch.hppc that return FloatContainer Modifier and Type Method Description FloatContainer
ByteFloatAssociativeContainer. values()
Returns a container view of all values present in this container.FloatContainer
CharFloatAssociativeContainer. values()
Returns a container view of all values present in this container.FloatContainer
DoubleFloatAssociativeContainer. values()
Returns a container view of all values present in this container.FloatContainer
FloatFloatAssociativeContainer. values()
Returns a container view of all values present in this container.FloatContainer
IntFloatAssociativeContainer. values()
Returns a container view of all values present in this container.FloatContainer
LongFloatAssociativeContainer. values()
Returns a container view of all values present in this container.FloatContainer
ObjectFloatAssociativeContainer. values()
Returns a container view of all values present in this container.FloatContainer
ShortFloatAssociativeContainer. values()
Returns a container view of all values present in this container.Methods in com.carrotsearch.hppc with parameters of type FloatContainer Modifier and Type Method Description int
FloatArrayList. addAll(FloatContainer container)
Adds all elements from another container.int
FloatHashSet. addAll(FloatContainer container)
Adds all elements from the givenFloatContainer
to this set.int
FloatArrayDeque. addFirst(FloatContainer container)
Inserts all elements from the given container to the front of this deque.int
FloatArrayDeque. addLast(FloatContainer container)
Inserts all elements from the given container to the end of this deque.int
FloatStack. pushAll(FloatContainer container)
Pushes all elements from another container to the top of the stack.int
FloatByteAssociativeContainer. removeAll(FloatContainer container)
Removes all keys (and associated values) present in a given container.int
FloatByteHashMap. removeAll(FloatContainer other)
Removes all keys (and associated values) present in a given container.int
FloatCharAssociativeContainer. removeAll(FloatContainer container)
Removes all keys (and associated values) present in a given container.int
FloatCharHashMap. removeAll(FloatContainer other)
Removes all keys (and associated values) present in a given container.int
FloatDoubleAssociativeContainer. removeAll(FloatContainer container)
Removes all keys (and associated values) present in a given container.int
FloatDoubleHashMap. removeAll(FloatContainer other)
Removes all keys (and associated values) present in a given container.int
FloatFloatAssociativeContainer. removeAll(FloatContainer container)
Removes all keys (and associated values) present in a given container.int
FloatFloatHashMap. removeAll(FloatContainer other)
Removes all keys (and associated values) present in a given container.int
FloatIntAssociativeContainer. removeAll(FloatContainer container)
Removes all keys (and associated values) present in a given container.int
FloatIntHashMap. removeAll(FloatContainer other)
Removes all keys (and associated values) present in a given container.int
FloatLongAssociativeContainer. removeAll(FloatContainer container)
Removes all keys (and associated values) present in a given container.int
FloatLongHashMap. removeAll(FloatContainer other)
Removes all keys (and associated values) present in a given container.int
FloatObjectAssociativeContainer. removeAll(FloatContainer container)
Removes all keys (and associated values) present in a given container.int
FloatObjectHashMap. removeAll(FloatContainer other)
Removes all keys (and associated values) present in a given container.int
FloatShortAssociativeContainer. removeAll(FloatContainer container)
Removes all keys (and associated values) present in a given container.int
FloatShortHashMap. removeAll(FloatContainer other)
Removes all keys (and associated values) present in a given container.Constructors in com.carrotsearch.hppc with parameters of type FloatContainer Constructor Description FloatArrayDeque(FloatContainer container)
Creates a new deque from elements of another container, appending elements at the end of the deque in the iteration order.FloatArrayList(FloatContainer container)
Creates a new list from the elements of another container in its iteration order.FloatHashSet(FloatContainer container)
New instance copying elements from anotherFloatContainer
.FloatStack(FloatContainer container)
Create a stack by pushing all elements of another container to it.
-