Uses of Interface
com.carrotsearch.hppc.FloatContainer
Packages that use FloatContainer
-
Uses of FloatContainer in com.carrotsearch.hppc
Subinterfaces of FloatContainer in com.carrotsearch.hppcModifier and TypeInterfaceDescriptioninterfaceA collection allows basic, efficient operations on sets of elements (difference and intersection).interfaceA linear collection that supports element insertion and removal at both ends.interfaceAn indexed container provides random access to elements based on anindex.interfaceMarker 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).interfaceA set offloats.Classes in com.carrotsearch.hppc that implement FloatContainerModifier and TypeClassDescription(package private) classCommon superclass for collections.private final classA view over the set of values of this map.private final classA view over the set of values of this map.private final classA view over the set of values of this map.classAn array-backedFloatDeque.classAn array-backed list of floats.final classA view of the keys inside this hash map.final classA view of the keys inside this hash map.final classA view of the keys inside this hash map.final classA view of the keys inside this hash map.private final classA view over the set of values of this map.classA hash set offloats, implemented using using open addressing with linear probing for collision resolution.final classA view of the keys inside this hash map.final classA view of the keys inside this hash map.final classA view of the keys inside this hash map.classSame asFloatHashSetbut does not implement per-instance key mixing strategy and uses a simpler (faster) bit distribution function.final classA view of the keys inside this hash map.classA subclass ofFloatArrayListadding stack-related utility methods.private final classA view over the set of values of this map.private final classA view over the set of values of this map.private final classA view over the set of values of this map.private final classA view over the set of values of this map.Methods in com.carrotsearch.hppc that return FloatContainerModifier and TypeMethodDescriptionByteFloatAssociativeContainer.values()Returns a container view of all values present in this container.CharFloatAssociativeContainer.values()Returns a container view of all values present in this container.DoubleFloatAssociativeContainer.values()Returns a container view of all values present in this container.FloatFloatAssociativeContainer.values()Returns a container view of all values present in this container.IntFloatAssociativeContainer.values()Returns a container view of all values present in this container.LongFloatAssociativeContainer.values()Returns a container view of all values present in this container.ObjectFloatAssociativeContainer.values()Returns a container view of all values present in this container.ShortFloatAssociativeContainer.values()Returns a container view of all values present in this container.Methods in com.carrotsearch.hppc with parameters of type FloatContainerModifier and TypeMethodDescriptionintFloatArrayList.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 FloatContainerModifierConstructorDescriptionFloatArrayDeque(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.