Package | Description |
---|---|
com.carrotsearch.hppc |
Modifier and Type | Interface and Description |
---|---|
interface |
ByteCollection
A collection allows basic, efficient operations on sets of elements
(difference and intersection).
|
interface |
ByteDeque
A linear collection that supports element insertion and removal at both ends.
|
interface |
ByteIndexedContainer
An indexed container provides random access to elements based on an
index . |
interface |
ByteLookupContainer
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 |
ByteArrayDeque
An array-backed
ByteDeque . |
class |
ByteArrayList
An array-backed list of bytes.
|
class |
ByteStack
A subclass of
ByteArrayList adding stack-related utility methods. |
Modifier and Type | Method and Description |
---|---|
ByteContainer |
ObjectByteAssociativeContainer.values()
Returns a container view of all values present in this container.
|
ByteContainer |
CharByteAssociativeContainer.values()
Returns a container view of all values present in this container.
|
ByteContainer |
ShortByteAssociativeContainer.values()
Returns a container view of all values present in this container.
|
ByteContainer |
LongByteAssociativeContainer.values()
Returns a container view of all values present in this container.
|
ByteContainer |
IntByteAssociativeContainer.values()
Returns a container view of all values present in this container.
|
Modifier and Type | Method and Description |
---|---|
int |
ByteArrayList.addAll(ByteContainer container)
Adds all elements from another container.
|
int |
ByteArrayDeque.addFirst(ByteContainer container)
Inserts all elements from the given container to the front of this deque.
|
int |
ByteArrayDeque.addLast(ByteContainer container)
Inserts all elements from the given container to the end of this deque.
|
int |
ByteStack.pushAll(ByteContainer container)
Pushes all elements from another container to the top of the stack.
|
Constructor and Description |
---|
ByteArrayDeque(ByteContainer container)
Creates a new deque from elements of another container, appending elements at
the end of the deque in the iteration order.
|
ByteArrayList(ByteContainer container)
Creates a new list from the elements of another container in its
iteration order.
|
ByteStack(ByteContainer container)
Create a stack by pushing all elements of another container to it.
|
Copyright © 2024 Carrot Search s.c.. All rights reserved.