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 linear collection that supports element insertion and removal at both ends.
|
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
ShortDeque . |
class |
ShortArrayList
An array-backed list of shorts.
|
class |
ShortByteHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
ShortCharHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
ShortDoubleHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
ShortFloatHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
ShortHashSet
A hash set of
short s, implemented using using open addressing
with linear probing for collision resolution. |
class |
ShortIntHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
ShortLongHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
ShortObjectHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
ShortScatterSet
Same as
ShortHashSet but does not implement per-instance key mixing
strategy and uses a simpler (faster) bit distribution function. |
class |
ShortShortHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
ShortStack
A subclass of
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 |
LongShortAssociativeContainer.values()
Returns a container view of all values present in this container.
|
ShortContainer |
DoubleShortAssociativeContainer.values()
Returns a container view of all values present in this container.
|
ShortContainer |
FloatShortAssociativeContainer.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 |
ByteShortAssociativeContainer.values()
Returns a container view of all values present in this container.
|
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.
|
Modifier and Type | Method and Description |
---|---|
int |
ShortHashSet.addAll(ShortContainer container)
Adds all elements from the given
ShortContainer to this set. |
int |
ShortArrayList.addAll(ShortContainer container)
Adds all elements from another container.
|
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.
|
int |
ShortStack.pushAll(ShortContainer container)
Pushes all elements from another container to the top of the stack.
|
int |
ShortFloatHashMap.removeAll(ShortContainer other)
Removes all keys (and associated values) present in a given container.
|
int |
ShortIntHashMap.removeAll(ShortContainer other)
Removes all keys (and associated values) present in a given container.
|
int |
ShortShortHashMap.removeAll(ShortContainer other)
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.
|
int |
ShortCharHashMap.removeAll(ShortContainer other)
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 |
ShortObjectHashMap.removeAll(ShortContainer other)
Removes all keys (and associated values) present in a given container.
|
int |
ShortFloatAssociativeContainer.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 |
ShortLongHashMap.removeAll(ShortContainer other)
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 |
ShortIntAssociativeContainer.removeAll(ShortContainer container)
Removes all keys (and associated values) present in a given container.
|
int |
ShortByteHashMap.removeAll(ShortContainer other)
Removes all keys (and associated values) present in a given container.
|
int |
ShortDoubleHashMap.removeAll(ShortContainer other)
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 |
ShortShortAssociativeContainer.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 elements at
the end of the deque in the iteration order.
|
ShortArrayList(ShortContainer container)
Creates a new list from the elements of another container in its
iteration order.
|
ShortHashSet(ShortContainer container)
New instance copying elements from another
ShortContainer . |
ShortStack(ShortContainer container)
Create a stack by pushing all elements of another container to it.
|
Copyright © 2017 Carrot Search s.c.. All rights reserved.