Package | Description |
---|---|
com.carrotsearch.hppc |
Modifier and Type | Interface and Description |
---|---|
interface |
DoubleCollection
A collection allows basic, efficient operations on sets of elements
(difference and intersection).
|
interface |
DoubleDeque
A linear collection that supports element insertion and removal at both ends.
|
interface |
DoubleIndexedContainer
An indexed container provides random access to elements based on an
index . |
interface |
DoubleLookupContainer
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 |
DoubleArrayDeque
An array-backed
DoubleDeque . |
class |
DoubleArrayList
An array-backed list of doubles.
|
class |
DoubleStack
A subclass of
DoubleArrayList adding stack-related utility methods. |
Modifier and Type | Method and Description |
---|---|
DoubleContainer |
LongDoubleAssociativeContainer.values()
Returns a container view of all values present in this container.
|
DoubleContainer |
CharDoubleAssociativeContainer.values()
Returns a container view of all values present in this container.
|
DoubleContainer |
ObjectDoubleAssociativeContainer.values()
Returns a container view of all values present in this container.
|
DoubleContainer |
IntDoubleAssociativeContainer.values()
Returns a container view of all values present in this container.
|
DoubleContainer |
ShortDoubleAssociativeContainer.values()
Returns a container view of all values present in this container.
|
Modifier and Type | Method and Description |
---|---|
int |
DoubleArrayList.addAll(DoubleContainer container)
Adds all elements from another container.
|
int |
DoubleArrayDeque.addFirst(DoubleContainer container)
Inserts all elements from the given container to the front of this deque.
|
int |
DoubleArrayDeque.addLast(DoubleContainer container)
Inserts all elements from the given container to the end of this deque.
|
int |
DoubleStack.pushAll(DoubleContainer container)
Pushes all elements from another container to the top of the stack.
|
Constructor and Description |
---|
DoubleArrayDeque(DoubleContainer container)
Creates a new deque from elements of another container, appending elements at
the end of the deque in the iteration order.
|
DoubleArrayList(DoubleContainer container)
Creates a new list from the elements of another container in its
iteration order.
|
DoubleStack(DoubleContainer container)
Create a stack by pushing all elements of another container to it.
|
Copyright © 2024 Carrot Search s.c.. All rights reserved.