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 linear collection that supports element insertion and removal at both ends.
|
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
FloatDeque . |
class |
FloatArrayList
An array-backed list of floats.
|
class |
FloatByteHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
FloatCharHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
FloatDoubleHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
FloatFloatHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
FloatHashSet
A hash set of
float s, implemented using using open addressing
with linear probing for collision resolution. |
class |
FloatIntHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
FloatLongHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
FloatObjectHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
FloatScatterSet
Same as
FloatHashSet but does not implement per-instance key mixing
strategy and uses a simpler (faster) bit distribution function. |
class |
FloatShortHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
FloatStack
A subclass of
FloatArrayList adding stack-related utility methods. |
Modifier and Type | Method and Description |
---|---|
FloatContainer |
FloatFloatAssociativeContainer.values()
Returns a container view of all values present in this container.
|
FloatContainer |
LongFloatAssociativeContainer.values()
Returns a container view of all values present in this container.
|
FloatContainer |
IntFloatAssociativeContainer.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 |
ObjectFloatAssociativeContainer.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 |
CharFloatAssociativeContainer.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.
|
Modifier and Type | Method and Description |
---|---|
int |
FloatArrayList.addAll(FloatContainer container)
Adds all elements from another container.
|
int |
FloatHashSet.addAll(FloatContainer container)
Adds all elements from the given
FloatContainer 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.
|
int |
FloatStack.pushAll(FloatContainer container)
Pushes all elements from another container to the top of the stack.
|
int |
FloatLongAssociativeContainer.removeAll(FloatContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
FloatShortHashMap.removeAll(FloatContainer other)
Removes all keys (and associated values) present in a given container.
|
int |
FloatLongHashMap.removeAll(FloatContainer other)
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 |
FloatFloatAssociativeContainer.removeAll(FloatContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
FloatDoubleHashMap.removeAll(FloatContainer other)
Removes all keys (and associated values) present in a given container.
|
int |
FloatFloatHashMap.removeAll(FloatContainer other)
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 |
FloatDoubleAssociativeContainer.removeAll(FloatContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
FloatObjectHashMap.removeAll(FloatContainer other)
Removes all keys (and associated values) present in a given container.
|
int |
FloatIntHashMap.removeAll(FloatContainer other)
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 |
FloatCharHashMap.removeAll(FloatContainer other)
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 |
FloatIntAssociativeContainer.removeAll(FloatContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
FloatByteHashMap.removeAll(FloatContainer other)
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 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 another
FloatContainer . |
FloatStack(FloatContainer container)
Create a stack by pushing all elements of another container to it.
|
Copyright © 2017 Carrot Search s.c.. All rights reserved.