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).Classes in com.carrotsearch.hppc that implement FloatContainer Modifier and Type Class Description (package private) classAbstractFloatCollectionCommon superclass for collections.private classCharFloatHashMap.ValuesContainerA view over the set of values of this map.classFloatArrayDequeAn array-backedFloatDeque.classFloatArrayListAn array-backed list of floats.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 FloatContainerCharFloatAssociativeContainer. 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.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.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.FloatStack(FloatContainer container)Create a stack by pushing all elements of another container to it.
-