Package | Description |
---|---|
com.carrotsearch.hppc |
Modifier and Type | Interface and Description |
---|---|
interface |
ShortCollection
A collection allows basic, efficient operations on sets of elements
(difference and intersection).
|
interface |
ShortDeque
A double-linked queue of
short s. |
interface |
ShortIndexedContainer
An indexed container provides random access to elements based on an
index . |
interface |
ShortLookupContainer
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 |
ShortSet
A set of
short s. |
Modifier and Type | Class and Description |
---|---|
class |
ShortArrayDeque
An array-backed deque (doubly linked queue) of shorts.
|
class |
ShortArrayList
An array-backed list of shorts.
|
class |
ShortByteOpenHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
ShortCharOpenHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
ShortDoubleOpenHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
ShortFloatOpenHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
ShortIntOpenHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
ShortLongOpenHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
ShortObjectOpenHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
ShortOpenHashSet
A hash set of
short s, implemented using using open
addressing with linear probing for collision resolution. |
class |
ShortShortOpenHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
ShortStack
An extension to
ShortArrayList adding stack-related utility methods. |
Modifier and Type | Method and Description |
---|---|
ShortContainer |
CharShortAssociativeContainer.values()
Returns a container view of all values present in this container.
|
ShortContainer |
ObjectShortOpenHashMap.values() |
ShortContainer |
FloatShortOpenHashMap.values() |
ShortContainer |
DoubleShortAssociativeContainer.values()
Returns a container view of all values present in this container.
|
ShortContainer |
CharShortOpenHashMap.values() |
ShortContainer |
ObjectShortAssociativeContainer.values()
Returns a container view of all values present in this container.
|
ShortContainer |
ShortShortAssociativeContainer.values()
Returns a container view of all values present in this container.
|
ShortContainer |
LongShortOpenHashMap.values() |
ShortContainer |
DoubleShortOpenHashMap.values() |
ShortContainer |
ShortShortOpenHashMap.values() |
ShortContainer |
FloatShortAssociativeContainer.values()
Returns a container view of all values present in this container.
|
ShortContainer |
ByteShortAssociativeContainer.values()
Returns a container view of all values present in this container.
|
ShortContainer |
IntShortAssociativeContainer.values()
Returns a container view of all values present in this container.
|
ShortContainer |
LongShortAssociativeContainer.values()
Returns a container view of all values present in this container.
|
ShortContainer |
IntShortOpenHashMap.values() |
ShortContainer |
ByteShortOpenHashMap.values() |
Modifier and Type | Method and Description |
---|---|
int |
ShortArrayList.addAll(ShortContainer container)
Adds all elements from another container.
|
int |
ShortOpenHashSet.addAll(ShortContainer container)
Adds all elements from a given container to this set.
|
int |
ShortArrayDeque.addFirst(ShortContainer container)
Inserts all elements from the given container to the front of this deque.
|
int |
ShortArrayDeque.addLast(ShortContainer container)
Inserts all elements from the given container to the end of this deque.
|
static ShortStack |
ShortStack.from(ShortContainer container)
Create a stack by pushing all elements of another container to it.
|
static ShortArrayList |
ShortArrayList.from(ShortContainer container)
Create a list from elements of another container.
|
static ShortOpenHashSet |
ShortOpenHashSet.from(ShortContainer container)
Create a set from elements of another container.
|
int |
ShortStack.pushAll(ShortContainer container)
Pushes all elements from another container to the top of the stack.
|
int |
ShortFloatAssociativeContainer.removeAll(ShortContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
ShortLongOpenHashMap.removeAll(ShortContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
ShortIntOpenHashMap.removeAll(ShortContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
ShortObjectOpenHashMap.removeAll(ShortContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
ShortCharOpenHashMap.removeAll(ShortContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
ShortShortAssociativeContainer.removeAll(ShortContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
ShortByteAssociativeContainer.removeAll(ShortContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
ShortLongAssociativeContainer.removeAll(ShortContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
ShortCharAssociativeContainer.removeAll(ShortContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
ShortIntAssociativeContainer.removeAll(ShortContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
ShortObjectAssociativeContainer.removeAll(ShortContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
ShortFloatOpenHashMap.removeAll(ShortContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
ShortByteOpenHashMap.removeAll(ShortContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
ShortShortOpenHashMap.removeAll(ShortContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
ShortDoubleOpenHashMap.removeAll(ShortContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
ShortDoubleAssociativeContainer.removeAll(ShortContainer container)
Removes all keys (and associated values) present in a given container.
|
Constructor and Description |
---|
ShortArrayDeque(ShortContainer container)
Creates a new deque from elements of another container, appending them
at the end of this deque.
|
ShortArrayList(ShortContainer container)
Creates a new list from elements of another container.
|
ShortOpenHashSet(ShortContainer container)
Creates a hash set from elements of another container.
|
ShortStack(ShortContainer container)
Create a stack by pushing all elements of another container to it.
|
Copyright © 2014 Carrot Search s.c.. All rights reserved.