Package | Description |
---|---|
com.carrotsearch.hppc |
Modifier and Type | Interface and Description |
---|---|
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. |
Modifier and Type | Class and Description |
---|---|
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
FloatArrayList adding stack-related utility methods. |
Modifier and Type | Method and Description |
---|---|
FloatContainer |
LongFloatOpenHashMap.values() |
FloatContainer |
LongFloatAssociativeContainer.values()
Returns a container view of all values present in this container.
|
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 |
DoubleFloatOpenHashMap.values() |
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 |
ObjectFloatOpenHashMap.values() |
FloatContainer |
ObjectFloatAssociativeContainer.values()
Returns a container view of all values present in this container.
|
FloatContainer |
IntFloatOpenHashMap.values() |
FloatContainer |
IntFloatAssociativeContainer.values()
Returns a container view of all values present in this container.
|
FloatContainer |
ObjectFloatOpenIdentityHashMap.values() |
FloatContainer |
ByteFloatOpenHashMap.values() |
FloatContainer |
CharFloatOpenHashMap.values() |
FloatContainer |
ShortFloatOpenHashMap.values() |
FloatContainer |
ShortFloatAssociativeContainer.values()
Returns a container view of all values present in this container.
|
FloatContainer |
FloatFloatOpenHashMap.values() |
Modifier and Type | Method and Description |
---|---|
int |
FloatOpenHashSet.addAll(FloatContainer container)
Adds all elements from a given container to this set.
|
int |
FloatArrayList.addAll(FloatContainer container)
Adds all elements from another container.
|
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 FloatOpenHashSet |
FloatOpenHashSet.from(FloatContainer container)
Create a set from elements of another container.
|
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.
|
int |
FloatStack.pushAll(FloatContainer container)
Pushes all elements from another container to the top of the stack.
|
int |
FloatIntAssociativeContainer.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.
|
int |
FloatObjectOpenHashMap.removeAll(FloatContainer container)
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 |
FloatFloatAssociativeContainer.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 |
FloatCharOpenHashMap.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 |
FloatDoubleOpenHashMap.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 |
FloatByteAssociativeContainer.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 |
FloatFloatOpenHashMap.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 |
FloatIntOpenHashMap.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.
|
Constructor and Description |
---|
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.
|
Copyright © 2016 Carrot Search s.c.. All rights reserved.