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) . |
Modifier and Type | Class and Description |
---|---|
class |
FloatArrayDeque
An array-backed
FloatDeque . |
class |
FloatArrayList
An array-backed list of floats.
|
class |
FloatStack
A subclass of
FloatArrayList adding stack-related utility methods. |
Modifier and Type | Method and Description |
---|---|
FloatContainer |
ObjectFloatAssociativeContainer.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.
|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
int |
FloatStack.pushAll(FloatContainer container)
Pushes all elements from another container to the top of the stack.
|
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.
|
FloatStack(FloatContainer container)
Create a stack by pushing all elements of another container to it.
|
Copyright © 2024 Carrot Search s.c.. All rights reserved.