| Package | Description |
|---|---|
| it.unimi.dsi.fastutil.shorts |
Provides type-specific classes for short elements or keys.
|
| Modifier and Type | Field and Description |
|---|---|
protected ShortHash.Strategy |
ShortOpenCustomHashSet.strategy
The hash strategy of this custom set.
|
protected ShortHash.Strategy |
ShortLinkedOpenCustomHashSet.strategy
The hash strategy of this custom set.
|
| Modifier and Type | Method and Description |
|---|---|
ShortHash.Strategy |
ShortOpenCustomHashSet.strategy()
Returns the hashing strategy.
|
ShortHash.Strategy |
ShortLinkedOpenCustomHashSet.strategy()
Returns the hashing strategy.
|
| Constructor and Description |
|---|
ShortLinkedOpenCustomHashSet(Collection<? extends Short> c,
float f,
ShortHash.Strategy strategy)
Creates a new hash set copying a given collection.
|
ShortLinkedOpenCustomHashSet(Collection<? extends Short> c,
ShortHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor
copying a given collection. |
ShortLinkedOpenCustomHashSet(int expected,
float f,
ShortHash.Strategy strategy)
Creates a new hash set.
|
ShortLinkedOpenCustomHashSet(int expected,
ShortHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
ShortLinkedOpenCustomHashSet(Iterator<?> i,
float f,
ShortHash.Strategy strategy)
Creates a new hash set using elements provided by an iterator.
|
ShortLinkedOpenCustomHashSet(Iterator<?> i,
ShortHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by an iterator. |
ShortLinkedOpenCustomHashSet(short[] a,
float f,
ShortHash.Strategy strategy)
Creates a new hash set copying the elements of an array.
|
ShortLinkedOpenCustomHashSet(short[] a,
int offset,
int length,
float f,
ShortHash.Strategy strategy)
Creates a new hash set and fills it with the elements of a given array.
|
ShortLinkedOpenCustomHashSet(short[] a,
int offset,
int length,
ShortHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor and fills it with the elements of a given array. |
ShortLinkedOpenCustomHashSet(short[] a,
ShortHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor
copying the elements of an array. |
ShortLinkedOpenCustomHashSet(ShortCollection c,
float f,
ShortHash.Strategy strategy)
Creates a new hash set copying a given type-specific collection.
|
ShortLinkedOpenCustomHashSet(ShortCollection c,
ShortHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor
copying a given type-specific collection. |
ShortLinkedOpenCustomHashSet(ShortHash.Strategy strategy)
Creates a new hash set with initial expected
Hash.DEFAULT_INITIAL_SIZE elements
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
ShortLinkedOpenCustomHashSet(ShortIterator i,
float f,
ShortHash.Strategy strategy)
Creates a new hash set using elements provided by a type-specific iterator.
|
ShortLinkedOpenCustomHashSet(ShortIterator i,
ShortHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by a type-specific iterator. |
ShortOpenCustomHashSet(Collection<? extends Short> c,
float f,
ShortHash.Strategy strategy)
Creates a new hash set copying a given collection.
|
ShortOpenCustomHashSet(Collection<? extends Short> c,
ShortHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor
copying a given collection. |
ShortOpenCustomHashSet(int expected,
float f,
ShortHash.Strategy strategy)
Creates a new hash set.
|
ShortOpenCustomHashSet(int expected,
ShortHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
ShortOpenCustomHashSet(Iterator<?> i,
float f,
ShortHash.Strategy strategy)
Creates a new hash set using elements provided by an iterator.
|
ShortOpenCustomHashSet(Iterator<?> i,
ShortHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by an iterator. |
ShortOpenCustomHashSet(short[] a,
float f,
ShortHash.Strategy strategy)
Creates a new hash set copying the elements of an array.
|
ShortOpenCustomHashSet(short[] a,
int offset,
int length,
float f,
ShortHash.Strategy strategy)
Creates a new hash set and fills it with the elements of a given array.
|
ShortOpenCustomHashSet(short[] a,
int offset,
int length,
ShortHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor and fills it with the elements of a given array. |
ShortOpenCustomHashSet(short[] a,
ShortHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor
copying the elements of an array. |
ShortOpenCustomHashSet(ShortCollection c,
float f,
ShortHash.Strategy strategy)
Creates a new hash set copying a given type-specific collection.
|
ShortOpenCustomHashSet(ShortCollection c,
ShortHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor
copying a given type-specific collection. |
ShortOpenCustomHashSet(ShortHash.Strategy strategy)
Creates a new hash set with initial expected
Hash.DEFAULT_INITIAL_SIZE elements
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
ShortOpenCustomHashSet(ShortIterator i,
float f,
ShortHash.Strategy strategy)
Creates a new hash set using elements provided by a type-specific iterator.
|
ShortOpenCustomHashSet(ShortIterator i,
ShortHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by a type-specific iterator. |
Copyright © 2013. All Rights Reserved.