|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use FloatContainer | |
---|---|
com.carrotsearch.hppc | High Performance Primitive Collections (HPPC) library provides
typical data structures (lists, stacks, maps)
template-generated for all Java primitive types
(byte , int , etc.) to conserve
memory and boost performance. |
Uses of FloatContainer in com.carrotsearch.hppc |
---|
Subinterfaces of FloatContainer in com.carrotsearch.hppc | |
---|---|
interface |
FloatCollection
A collection allows basic, efficient operations on sets of elements (difference and intersection). |
interface |
FloatDeque
A double-linked queue of float s. |
interface |
FloatIndexedContainer
An indexed container provides random access to elements based on an index . |
interface |
FloatLookupContainer
Marker interface for containers that can check if they contain a given object in at least time O(log n) and ideally in amortized
constant time O(1) . |
interface |
FloatSet
A set of float s. |
Classes in com.carrotsearch.hppc that implement FloatContainer | |
---|---|
class |
FloatArrayDeque
An array-backed deque (doubly linked queue) of floats. |
class |
FloatArrayList
An array-backed list of floats. |
class |
FloatByteOpenHashMap.KeysContainer
A view of the keys inside this hash map. |
class |
FloatCharOpenHashMap.KeysContainer
A view of the keys inside this hash map. |
class |
FloatDoubleOpenHashMap.KeysContainer
A view of the keys inside this hash map. |
class |
FloatFloatOpenHashMap.KeysContainer
A view of the keys inside this hash map. |
class |
FloatIntOpenHashMap.KeysContainer
A view of the keys inside this hash map. |
class |
FloatLongOpenHashMap.KeysContainer
A view of the keys inside this hash map. |
class |
FloatObjectOpenHashMap.KeysContainer
A view of the keys inside this hash map. |
class |
FloatOpenHashSet
A hash set of float s, implemented using using open
addressing with linear probing for collision resolution. |
class |
FloatShortOpenHashMap.KeysContainer
A view of the keys inside this hash map. |
class |
FloatStack
An extension to ObjectArrayList adding stack-related utility methods. |
Methods in com.carrotsearch.hppc that return FloatContainer | |
---|---|
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 |
LongFloatOpenHashMap.values()
|
FloatContainer |
ByteFloatOpenHashMap.values()
|
FloatContainer |
DoubleFloatOpenHashMap.values()
|
FloatContainer |
IntFloatAssociativeContainer.values()
Returns a container view of all values present in this container. |
FloatContainer |
FloatFloatOpenHashMap.values()
|
FloatContainer |
ObjectFloatAssociativeContainer.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 |
ShortFloatAssociativeContainer.values()
Returns a container view of all values present in this container. |
FloatContainer |
IntFloatOpenHashMap.values()
|
FloatContainer |
ObjectFloatOpenHashMap.values()
|
FloatContainer |
ByteFloatAssociativeContainer.values()
Returns a container view of all values present in this container. |
FloatContainer |
ShortFloatOpenHashMap.values()
|
FloatContainer |
LongFloatAssociativeContainer.values()
Returns a container view of all values present in this container. |
FloatContainer |
CharFloatOpenHashMap.values()
|
Methods in com.carrotsearch.hppc with parameters of type FloatContainer | |
---|---|
int |
FloatArrayList.addAll(FloatContainer container)
Adds all elements from another container. |
int |
FloatOpenHashSet.addAll(FloatContainer container)
Adds all elements from a given container 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. |
static FloatArrayList |
FloatArrayList.from(FloatContainer container)
Create a list from elements of another container. |
static FloatStack |
FloatStack.from(FloatContainer container)
Create a stack by pushing all elements of another container to it. |
static FloatOpenHashSet |
FloatOpenHashSet.from(FloatContainer container)
Create a set from elements of another container. |
int |
FloatStack.pushAll(FloatContainer container)
Pushes all elements from another container to the top of the stack. |
int |
FloatObjectAssociativeContainer.removeAll(FloatContainer container)
Removes all keys (and associated values) present in a given container. |
int |
FloatCharOpenHashMap.removeAll(FloatContainer container)
Removes all keys (and associated values) present in a given container. |
int |
FloatByteAssociativeContainer.removeAll(FloatContainer container)
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 |
FloatObjectOpenHashMap.removeAll(FloatContainer container)
Removes all keys (and associated values) present in a given container. |
int |
FloatIntOpenHashMap.removeAll(FloatContainer container)
Removes all keys (and associated values) present in a given container. |
int |
FloatLongOpenHashMap.removeAll(FloatContainer container)
Removes all keys (and associated values) present in a given container. |
int |
FloatByteOpenHashMap.removeAll(FloatContainer container)
Removes all keys (and associated values) present in a given container. |
int |
FloatFloatOpenHashMap.removeAll(FloatContainer container)
Removes all keys (and associated values) present in a given container. |
int |
FloatShortOpenHashMap.removeAll(FloatContainer container)
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 |
FloatIntAssociativeContainer.removeAll(FloatContainer container)
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 |
FloatShortAssociativeContainer.removeAll(FloatContainer container)
Removes all keys (and associated values) present in a given container. |
int |
FloatDoubleOpenHashMap.removeAll(FloatContainer container)
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. |
Constructors in com.carrotsearch.hppc with parameters of type FloatContainer | |
---|---|
FloatArrayDeque(FloatContainer container)
Creates a new deque from elements of another container, appending them at the end of this deque. |
|
FloatArrayList(FloatContainer container)
Creates a new list from elements of another container. |
|
FloatOpenHashSet(FloatContainer container)
Creates a hash set from elements of another container. |
|
FloatStack(FloatContainer container)
Create a stack by pushing all elements of another container to it. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |