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 interfaceFloatCollectionA collection allows basic, efficient operations on sets of elements (difference and intersection).interfaceFloatDequeA linear collection that supports element insertion and removal at both ends.interfaceFloatIndexedContainerAn indexed container provides random access to elements based on anindex.interfaceFloatLookupContainerMarker 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).interfaceFloatSetA set offloats.Classes in com.carrotsearch.hppc that implement FloatContainer Modifier and Type Class Description (package private) classAbstractFloatCollectionCommon superclass for collections.private classByteFloatHashMap.ValuesContainerA view over the set of values of this map.private classCharFloatHashMap.ValuesContainerA view over the set of values of this map.private classDoubleFloatHashMap.ValuesContainerA view over the set of values of this map.classFloatArrayDequeAn array-backedFloatDeque.classFloatArrayListAn array-backed list of floats.classFloatByteHashMap.KeysContainerA view of the keys inside this hash map.classFloatCharHashMap.KeysContainerA view of the keys inside this hash map.classFloatDoubleHashMap.KeysContainerA view of the keys inside this hash map.classFloatFloatHashMap.KeysContainerA view of the keys inside this hash map.private classFloatFloatHashMap.ValuesContainerA view over the set of values of this map.classFloatHashSetA hash set offloats, implemented using using open addressing with linear probing for collision resolution.classFloatIntHashMap.KeysContainerA view of the keys inside this hash map.classFloatLongHashMap.KeysContainerA view of the keys inside this hash map.classFloatObjectHashMap.KeysContainerA view of the keys inside this hash map.classFloatScatterSetSame asFloatHashSetbut does not implement per-instance key mixing strategy and uses a simpler (faster) bit distribution function.classFloatShortHashMap.KeysContainerA view of the keys inside this hash map.classFloatStackA subclass ofFloatArrayListadding stack-related utility methods.private classIntFloatHashMap.ValuesContainerA view over the set of values of this map.private classLongFloatHashMap.ValuesContainerA view over the set of values of this map.private classObjectFloatHashMap.ValuesContainerA view over the set of values of this map.private classShortFloatHashMap.ValuesContainerA view over the set of values of this map.Methods in com.carrotsearch.hppc that return FloatContainer Modifier and Type Method Description FloatContainerByteFloatAssociativeContainer. values()Returns a container view of all values present in this container.FloatContainerCharFloatAssociativeContainer. values()Returns a container view of all values present in this container.FloatContainerDoubleFloatAssociativeContainer. values()Returns a container view of all values present in this container.FloatContainerFloatFloatAssociativeContainer. values()Returns a container view of all values present in this container.FloatContainerIntFloatAssociativeContainer. values()Returns a container view of all values present in this container.FloatContainerLongFloatAssociativeContainer. values()Returns a container view of all values present in this container.FloatContainerObjectFloatAssociativeContainer. values()Returns a container view of all values present in this container.FloatContainerShortFloatAssociativeContainer. 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 intFloatArrayList. addAll(FloatContainer container)Adds all elements from another container.intFloatHashSet. addAll(FloatContainer container)Adds all elements from the givenFloatContainerto this set.intFloatArrayDeque. addFirst(FloatContainer container)Inserts all elements from the given container to the front of this deque.intFloatArrayDeque. addLast(FloatContainer container)Inserts all elements from the given container to the end of this deque.intFloatStack. pushAll(FloatContainer container)Pushes all elements from another container to the top of the stack.intFloatByteAssociativeContainer. removeAll(FloatContainer container)Removes all keys (and associated values) present in a given container.intFloatByteHashMap. removeAll(FloatContainer other)Removes all keys (and associated values) present in a given container.intFloatCharAssociativeContainer. removeAll(FloatContainer container)Removes all keys (and associated values) present in a given container.intFloatCharHashMap. removeAll(FloatContainer other)Removes all keys (and associated values) present in a given container.intFloatDoubleAssociativeContainer. removeAll(FloatContainer container)Removes all keys (and associated values) present in a given container.intFloatDoubleHashMap. removeAll(FloatContainer other)Removes all keys (and associated values) present in a given container.intFloatFloatAssociativeContainer. removeAll(FloatContainer container)Removes all keys (and associated values) present in a given container.intFloatFloatHashMap. removeAll(FloatContainer other)Removes all keys (and associated values) present in a given container.intFloatIntAssociativeContainer. removeAll(FloatContainer container)Removes all keys (and associated values) present in a given container.intFloatIntHashMap. removeAll(FloatContainer other)Removes all keys (and associated values) present in a given container.intFloatLongAssociativeContainer. removeAll(FloatContainer container)Removes all keys (and associated values) present in a given container.intFloatLongHashMap. removeAll(FloatContainer other)Removes all keys (and associated values) present in a given container.intFloatObjectAssociativeContainer. removeAll(FloatContainer container)Removes all keys (and associated values) present in a given container.intFloatObjectHashMap. removeAll(FloatContainer other)Removes all keys (and associated values) present in a given container.intFloatShortAssociativeContainer. removeAll(FloatContainer container)Removes all keys (and associated values) present in a given container.intFloatShortHashMap. 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.
-