| Package | Description |
|---|---|
| com.carrotsearch.hppc |
| Modifier and Type | Interface and Description |
|---|---|
interface |
CharCollection
A collection allows basic, efficient operations on sets of elements
(difference and intersection).
|
interface |
CharDeque
A double-linked queue of
chars. |
interface |
CharIndexedContainer
An indexed container provides random access to elements based on an
index. |
interface |
CharLookupContainer
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 |
CharSet
A set of
chars. |
| Modifier and Type | Class and Description |
|---|---|
class |
CharArrayDeque
An array-backed deque (doubly linked queue) of chars.
|
class |
CharArrayList
An array-backed list of chars.
|
class |
CharByteOpenHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
CharCharOpenHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
CharDoubleOpenHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
CharFloatOpenHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
CharIntOpenHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
CharLongOpenHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
CharObjectOpenHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
CharOpenHashSet
A hash set of
chars, implemented using using open
addressing with linear probing for collision resolution. |
class |
CharShortOpenHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
CharStack
An extension to
CharArrayList adding stack-related utility methods. |
| Modifier and Type | Method and Description |
|---|---|
CharContainer |
ObjectCharAssociativeContainer.values()
Returns a container view of all values present in this container.
|
CharContainer |
FloatCharOpenHashMap.values() |
CharContainer |
FloatCharAssociativeContainer.values()
Returns a container view of all values present in this container.
|
CharContainer |
DoubleCharAssociativeContainer.values()
Returns a container view of all values present in this container.
|
CharContainer |
CharCharOpenHashMap.values() |
CharContainer |
ShortCharOpenHashMap.values() |
CharContainer |
IntCharOpenHashMap.values() |
CharContainer |
ObjectCharOpenHashMap.values() |
CharContainer |
DoubleCharOpenHashMap.values() |
CharContainer |
ShortCharAssociativeContainer.values()
Returns a container view of all values present in this container.
|
CharContainer |
ByteCharAssociativeContainer.values()
Returns a container view of all values present in this container.
|
CharContainer |
LongCharAssociativeContainer.values()
Returns a container view of all values present in this container.
|
CharContainer |
IntCharAssociativeContainer.values()
Returns a container view of all values present in this container.
|
CharContainer |
CharCharAssociativeContainer.values()
Returns a container view of all values present in this container.
|
CharContainer |
ByteCharOpenHashMap.values() |
CharContainer |
LongCharOpenHashMap.values() |
| Modifier and Type | Method and Description |
|---|---|
int |
CharOpenHashSet.addAll(CharContainer container)
Adds all elements from a given container to this set.
|
int |
CharArrayList.addAll(CharContainer container)
Adds all elements from another container.
|
int |
CharArrayDeque.addFirst(CharContainer container)
Inserts all elements from the given container to the front of this deque.
|
int |
CharArrayDeque.addLast(CharContainer container)
Inserts all elements from the given container to the end of this deque.
|
static CharStack |
CharStack.from(CharContainer container)
Create a stack by pushing all elements of another container to it.
|
static CharOpenHashSet |
CharOpenHashSet.from(CharContainer container)
Create a set from elements of another container.
|
static CharArrayList |
CharArrayList.from(CharContainer container)
Create a list from elements of another container.
|
int |
CharStack.pushAll(CharContainer container)
Pushes all elements from another container to the top of the stack.
|
int |
CharShortAssociativeContainer.removeAll(CharContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
CharFloatOpenHashMap.removeAll(CharContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
CharDoubleAssociativeContainer.removeAll(CharContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
CharCharOpenHashMap.removeAll(CharContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
CharDoubleOpenHashMap.removeAll(CharContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
CharShortOpenHashMap.removeAll(CharContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
CharIntOpenHashMap.removeAll(CharContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
CharObjectAssociativeContainer.removeAll(CharContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
CharByteOpenHashMap.removeAll(CharContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
CharLongAssociativeContainer.removeAll(CharContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
CharByteAssociativeContainer.removeAll(CharContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
CharIntAssociativeContainer.removeAll(CharContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
CharFloatAssociativeContainer.removeAll(CharContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
CharCharAssociativeContainer.removeAll(CharContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
CharLongOpenHashMap.removeAll(CharContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
CharObjectOpenHashMap.removeAll(CharContainer container)
Removes all keys (and associated values) present in a given container.
|
| Constructor and Description |
|---|
CharArrayDeque(CharContainer container)
Creates a new deque from elements of another container, appending them
at the end of this deque.
|
CharArrayList(CharContainer container)
Creates a new list from elements of another container.
|
CharOpenHashSet(CharContainer container)
Creates a hash set from elements of another container.
|
CharStack(CharContainer container)
Create a stack by pushing all elements of another container to it.
|
Copyright © 2014 Carrot Search s.c.. All rights reserved.