| Package | Description |
|---|---|
| it.unimi.dsi.fastutil.bytes |
Provides type-specific classes for byte elements or keys.
|
| Modifier and Type | Field and Description |
|---|---|
protected ByteHash.Strategy |
Byte2IntOpenCustomHashMap.strategy
The hash strategy of this custom map.
|
protected ByteHash.Strategy |
ByteOpenCustomHashSet.strategy
The hash strategy of this custom set.
|
protected ByteHash.Strategy |
Byte2ByteOpenCustomHashMap.strategy
The hash strategy of this custom map.
|
protected ByteHash.Strategy |
Byte2ObjectOpenCustomHashMap.strategy
The hash strategy of this custom map.
|
protected ByteHash.Strategy |
Byte2ReferenceOpenCustomHashMap.strategy
The hash strategy of this custom map.
|
protected ByteHash.Strategy |
Byte2CharOpenCustomHashMap.strategy
The hash strategy of this custom map.
|
protected ByteHash.Strategy |
Byte2ShortOpenCustomHashMap.strategy
The hash strategy of this custom map.
|
protected ByteHash.Strategy |
Byte2BooleanOpenCustomHashMap.strategy
The hash strategy of this custom map.
|
protected ByteHash.Strategy |
Byte2DoubleOpenCustomHashMap.strategy
The hash strategy of this custom map.
|
protected ByteHash.Strategy |
Byte2FloatOpenCustomHashMap.strategy
The hash strategy of this custom map.
|
protected ByteHash.Strategy |
Byte2LongOpenCustomHashMap.strategy
The hash strategy of this custom map.
|
protected ByteHash.Strategy |
ByteLinkedOpenCustomHashSet.strategy
The hash strategy of this custom set.
|
| Modifier and Type | Method and Description |
|---|---|
ByteHash.Strategy |
Byte2IntOpenCustomHashMap.strategy()
Returns the hashing strategy.
|
ByteHash.Strategy |
ByteOpenCustomHashSet.strategy()
Returns the hashing strategy.
|
ByteHash.Strategy |
Byte2ByteOpenCustomHashMap.strategy()
Returns the hashing strategy.
|
ByteHash.Strategy |
Byte2ObjectOpenCustomHashMap.strategy()
Returns the hashing strategy.
|
ByteHash.Strategy |
Byte2ReferenceOpenCustomHashMap.strategy()
Returns the hashing strategy.
|
ByteHash.Strategy |
Byte2CharOpenCustomHashMap.strategy()
Returns the hashing strategy.
|
ByteHash.Strategy |
Byte2ShortOpenCustomHashMap.strategy()
Returns the hashing strategy.
|
ByteHash.Strategy |
Byte2BooleanOpenCustomHashMap.strategy()
Returns the hashing strategy.
|
ByteHash.Strategy |
Byte2DoubleOpenCustomHashMap.strategy()
Returns the hashing strategy.
|
ByteHash.Strategy |
Byte2FloatOpenCustomHashMap.strategy()
Returns the hashing strategy.
|
ByteHash.Strategy |
Byte2LongOpenCustomHashMap.strategy()
Returns the hashing strategy.
|
ByteHash.Strategy |
ByteLinkedOpenCustomHashSet.strategy()
Returns the hashing strategy.
|
| Constructor and Description |
|---|
Byte2BooleanOpenCustomHashMap(byte[] k,
boolean[] v,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor using the elements of two parallel arrays. |
Byte2BooleanOpenCustomHashMap(byte[] k,
boolean[] v,
float f,
ByteHash.Strategy strategy)
Creates a new hash map using the elements of two parallel arrays.
|
Byte2BooleanOpenCustomHashMap(Byte2BooleanMap m,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Byte2BooleanOpenCustomHashMap(Byte2BooleanMap m,
float f,
ByteHash.Strategy strategy)
Creates a new hash map copying a given type-specific one.
|
Byte2BooleanOpenCustomHashMap(ByteHash.Strategy strategy)
Creates a new hash map with initial expected
Hash.DEFAULT_INITIAL_SIZE entries
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
Byte2BooleanOpenCustomHashMap(int expected,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
Byte2BooleanOpenCustomHashMap(int expected,
float f,
ByteHash.Strategy strategy)
Creates a new hash map.
|
Byte2BooleanOpenCustomHashMap(Map<? extends Byte,? extends Boolean> m,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given one. |
Byte2BooleanOpenCustomHashMap(Map<? extends Byte,? extends Boolean> m,
float f,
ByteHash.Strategy strategy)
Creates a new hash map copying a given one.
|
Byte2ByteOpenCustomHashMap(byte[] k,
byte[] v,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor using the elements of two parallel arrays. |
Byte2ByteOpenCustomHashMap(byte[] k,
byte[] v,
float f,
ByteHash.Strategy strategy)
Creates a new hash map using the elements of two parallel arrays.
|
Byte2ByteOpenCustomHashMap(Byte2ByteMap m,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Byte2ByteOpenCustomHashMap(Byte2ByteMap m,
float f,
ByteHash.Strategy strategy)
Creates a new hash map copying a given type-specific one.
|
Byte2ByteOpenCustomHashMap(ByteHash.Strategy strategy)
Creates a new hash map with initial expected
Hash.DEFAULT_INITIAL_SIZE entries
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
Byte2ByteOpenCustomHashMap(int expected,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
Byte2ByteOpenCustomHashMap(int expected,
float f,
ByteHash.Strategy strategy)
Creates a new hash map.
|
Byte2ByteOpenCustomHashMap(Map<? extends Byte,? extends Byte> m,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given one. |
Byte2ByteOpenCustomHashMap(Map<? extends Byte,? extends Byte> m,
float f,
ByteHash.Strategy strategy)
Creates a new hash map copying a given one.
|
Byte2CharOpenCustomHashMap(byte[] k,
char[] v,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor using the elements of two parallel arrays. |
Byte2CharOpenCustomHashMap(byte[] k,
char[] v,
float f,
ByteHash.Strategy strategy)
Creates a new hash map using the elements of two parallel arrays.
|
Byte2CharOpenCustomHashMap(Byte2CharMap m,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Byte2CharOpenCustomHashMap(Byte2CharMap m,
float f,
ByteHash.Strategy strategy)
Creates a new hash map copying a given type-specific one.
|
Byte2CharOpenCustomHashMap(ByteHash.Strategy strategy)
Creates a new hash map with initial expected
Hash.DEFAULT_INITIAL_SIZE entries
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
Byte2CharOpenCustomHashMap(int expected,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
Byte2CharOpenCustomHashMap(int expected,
float f,
ByteHash.Strategy strategy)
Creates a new hash map.
|
Byte2CharOpenCustomHashMap(Map<? extends Byte,? extends Character> m,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given one. |
Byte2CharOpenCustomHashMap(Map<? extends Byte,? extends Character> m,
float f,
ByteHash.Strategy strategy)
Creates a new hash map copying a given one.
|
Byte2DoubleOpenCustomHashMap(byte[] k,
double[] v,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor using the elements of two parallel arrays. |
Byte2DoubleOpenCustomHashMap(byte[] k,
double[] v,
float f,
ByteHash.Strategy strategy)
Creates a new hash map using the elements of two parallel arrays.
|
Byte2DoubleOpenCustomHashMap(Byte2DoubleMap m,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Byte2DoubleOpenCustomHashMap(Byte2DoubleMap m,
float f,
ByteHash.Strategy strategy)
Creates a new hash map copying a given type-specific one.
|
Byte2DoubleOpenCustomHashMap(ByteHash.Strategy strategy)
Creates a new hash map with initial expected
Hash.DEFAULT_INITIAL_SIZE entries
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
Byte2DoubleOpenCustomHashMap(int expected,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
Byte2DoubleOpenCustomHashMap(int expected,
float f,
ByteHash.Strategy strategy)
Creates a new hash map.
|
Byte2DoubleOpenCustomHashMap(Map<? extends Byte,? extends Double> m,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given one. |
Byte2DoubleOpenCustomHashMap(Map<? extends Byte,? extends Double> m,
float f,
ByteHash.Strategy strategy)
Creates a new hash map copying a given one.
|
Byte2FloatOpenCustomHashMap(byte[] k,
float[] v,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor using the elements of two parallel arrays. |
Byte2FloatOpenCustomHashMap(byte[] k,
float[] v,
float f,
ByteHash.Strategy strategy)
Creates a new hash map using the elements of two parallel arrays.
|
Byte2FloatOpenCustomHashMap(Byte2FloatMap m,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Byte2FloatOpenCustomHashMap(Byte2FloatMap m,
float f,
ByteHash.Strategy strategy)
Creates a new hash map copying a given type-specific one.
|
Byte2FloatOpenCustomHashMap(ByteHash.Strategy strategy)
Creates a new hash map with initial expected
Hash.DEFAULT_INITIAL_SIZE entries
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
Byte2FloatOpenCustomHashMap(int expected,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
Byte2FloatOpenCustomHashMap(int expected,
float f,
ByteHash.Strategy strategy)
Creates a new hash map.
|
Byte2FloatOpenCustomHashMap(Map<? extends Byte,? extends Float> m,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given one. |
Byte2FloatOpenCustomHashMap(Map<? extends Byte,? extends Float> m,
float f,
ByteHash.Strategy strategy)
Creates a new hash map copying a given one.
|
Byte2IntOpenCustomHashMap(byte[] k,
int[] v,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor using the elements of two parallel arrays. |
Byte2IntOpenCustomHashMap(byte[] k,
int[] v,
float f,
ByteHash.Strategy strategy)
Creates a new hash map using the elements of two parallel arrays.
|
Byte2IntOpenCustomHashMap(Byte2IntMap m,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Byte2IntOpenCustomHashMap(Byte2IntMap m,
float f,
ByteHash.Strategy strategy)
Creates a new hash map copying a given type-specific one.
|
Byte2IntOpenCustomHashMap(ByteHash.Strategy strategy)
Creates a new hash map with initial expected
Hash.DEFAULT_INITIAL_SIZE entries
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
Byte2IntOpenCustomHashMap(int expected,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
Byte2IntOpenCustomHashMap(int expected,
float f,
ByteHash.Strategy strategy)
Creates a new hash map.
|
Byte2IntOpenCustomHashMap(Map<? extends Byte,? extends Integer> m,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given one. |
Byte2IntOpenCustomHashMap(Map<? extends Byte,? extends Integer> m,
float f,
ByteHash.Strategy strategy)
Creates a new hash map copying a given one.
|
Byte2LongOpenCustomHashMap(byte[] k,
long[] v,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor using the elements of two parallel arrays. |
Byte2LongOpenCustomHashMap(byte[] k,
long[] v,
float f,
ByteHash.Strategy strategy)
Creates a new hash map using the elements of two parallel arrays.
|
Byte2LongOpenCustomHashMap(Byte2LongMap m,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Byte2LongOpenCustomHashMap(Byte2LongMap m,
float f,
ByteHash.Strategy strategy)
Creates a new hash map copying a given type-specific one.
|
Byte2LongOpenCustomHashMap(ByteHash.Strategy strategy)
Creates a new hash map with initial expected
Hash.DEFAULT_INITIAL_SIZE entries
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
Byte2LongOpenCustomHashMap(int expected,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
Byte2LongOpenCustomHashMap(int expected,
float f,
ByteHash.Strategy strategy)
Creates a new hash map.
|
Byte2LongOpenCustomHashMap(Map<? extends Byte,? extends Long> m,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given one. |
Byte2LongOpenCustomHashMap(Map<? extends Byte,? extends Long> m,
float f,
ByteHash.Strategy strategy)
Creates a new hash map copying a given one.
|
Byte2ObjectOpenCustomHashMap(byte[] k,
V[] v,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor using the elements of two parallel arrays. |
Byte2ObjectOpenCustomHashMap(byte[] k,
V[] v,
float f,
ByteHash.Strategy strategy)
Creates a new hash map using the elements of two parallel arrays.
|
Byte2ObjectOpenCustomHashMap(Byte2ObjectMap<V> m,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Byte2ObjectOpenCustomHashMap(Byte2ObjectMap<V> m,
float f,
ByteHash.Strategy strategy)
Creates a new hash map copying a given type-specific one.
|
Byte2ObjectOpenCustomHashMap(ByteHash.Strategy strategy)
Creates a new hash map with initial expected
Hash.DEFAULT_INITIAL_SIZE entries
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
Byte2ObjectOpenCustomHashMap(int expected,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
Byte2ObjectOpenCustomHashMap(int expected,
float f,
ByteHash.Strategy strategy)
Creates a new hash map.
|
Byte2ObjectOpenCustomHashMap(Map<? extends Byte,? extends V> m,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given one. |
Byte2ObjectOpenCustomHashMap(Map<? extends Byte,? extends V> m,
float f,
ByteHash.Strategy strategy)
Creates a new hash map copying a given one.
|
Byte2ReferenceOpenCustomHashMap(byte[] k,
V[] v,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor using the elements of two parallel arrays. |
Byte2ReferenceOpenCustomHashMap(byte[] k,
V[] v,
float f,
ByteHash.Strategy strategy)
Creates a new hash map using the elements of two parallel arrays.
|
Byte2ReferenceOpenCustomHashMap(Byte2ReferenceMap<V> m,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Byte2ReferenceOpenCustomHashMap(Byte2ReferenceMap<V> m,
float f,
ByteHash.Strategy strategy)
Creates a new hash map copying a given type-specific one.
|
Byte2ReferenceOpenCustomHashMap(ByteHash.Strategy strategy)
Creates a new hash map with initial expected
Hash.DEFAULT_INITIAL_SIZE entries
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
Byte2ReferenceOpenCustomHashMap(int expected,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
Byte2ReferenceOpenCustomHashMap(int expected,
float f,
ByteHash.Strategy strategy)
Creates a new hash map.
|
Byte2ReferenceOpenCustomHashMap(Map<? extends Byte,? extends V> m,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given one. |
Byte2ReferenceOpenCustomHashMap(Map<? extends Byte,? extends V> m,
float f,
ByteHash.Strategy strategy)
Creates a new hash map copying a given one.
|
Byte2ShortOpenCustomHashMap(byte[] k,
short[] v,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor using the elements of two parallel arrays. |
Byte2ShortOpenCustomHashMap(byte[] k,
short[] v,
float f,
ByteHash.Strategy strategy)
Creates a new hash map using the elements of two parallel arrays.
|
Byte2ShortOpenCustomHashMap(Byte2ShortMap m,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Byte2ShortOpenCustomHashMap(Byte2ShortMap m,
float f,
ByteHash.Strategy strategy)
Creates a new hash map copying a given type-specific one.
|
Byte2ShortOpenCustomHashMap(ByteHash.Strategy strategy)
Creates a new hash map with initial expected
Hash.DEFAULT_INITIAL_SIZE entries
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
Byte2ShortOpenCustomHashMap(int expected,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
Byte2ShortOpenCustomHashMap(int expected,
float f,
ByteHash.Strategy strategy)
Creates a new hash map.
|
Byte2ShortOpenCustomHashMap(Map<? extends Byte,? extends Short> m,
ByteHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given one. |
Byte2ShortOpenCustomHashMap(Map<? extends Byte,? extends Short> m,
float f,
ByteHash.Strategy strategy)
Creates a new hash map copying a given one.
|
ByteLinkedOpenCustomHashSet(byte[] a,
ByteHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor
copying the elements of an array. |
ByteLinkedOpenCustomHashSet(byte[] a,
float f,
ByteHash.Strategy strategy)
Creates a new hash set copying the elements of an array.
|
ByteLinkedOpenCustomHashSet(byte[] a,
int offset,
int length,
ByteHash.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. |
ByteLinkedOpenCustomHashSet(byte[] a,
int offset,
int length,
float f,
ByteHash.Strategy strategy)
Creates a new hash set and fills it with the elements of a given array.
|
ByteLinkedOpenCustomHashSet(ByteCollection c,
ByteHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor
copying a given type-specific collection. |
ByteLinkedOpenCustomHashSet(ByteCollection c,
float f,
ByteHash.Strategy strategy)
Creates a new hash set copying a given type-specific collection.
|
ByteLinkedOpenCustomHashSet(ByteHash.Strategy strategy)
Creates a new hash set with initial expected
Hash.DEFAULT_INITIAL_SIZE elements
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
ByteLinkedOpenCustomHashSet(ByteIterator i,
ByteHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by a type-specific iterator. |
ByteLinkedOpenCustomHashSet(ByteIterator i,
float f,
ByteHash.Strategy strategy)
Creates a new hash set using elements provided by a type-specific iterator.
|
ByteLinkedOpenCustomHashSet(Collection<? extends Byte> c,
ByteHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor
copying a given collection. |
ByteLinkedOpenCustomHashSet(Collection<? extends Byte> c,
float f,
ByteHash.Strategy strategy)
Creates a new hash set copying a given collection.
|
ByteLinkedOpenCustomHashSet(int expected,
ByteHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
ByteLinkedOpenCustomHashSet(int expected,
float f,
ByteHash.Strategy strategy)
Creates a new hash set.
|
ByteLinkedOpenCustomHashSet(Iterator<?> i,
ByteHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by an iterator. |
ByteLinkedOpenCustomHashSet(Iterator<?> i,
float f,
ByteHash.Strategy strategy)
Creates a new hash set using elements provided by an iterator.
|
ByteOpenCustomHashSet(byte[] a,
ByteHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor
copying the elements of an array. |
ByteOpenCustomHashSet(byte[] a,
float f,
ByteHash.Strategy strategy)
Creates a new hash set copying the elements of an array.
|
ByteOpenCustomHashSet(byte[] a,
int offset,
int length,
ByteHash.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. |
ByteOpenCustomHashSet(byte[] a,
int offset,
int length,
float f,
ByteHash.Strategy strategy)
Creates a new hash set and fills it with the elements of a given array.
|
ByteOpenCustomHashSet(ByteCollection c,
ByteHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor
copying a given type-specific collection. |
ByteOpenCustomHashSet(ByteCollection c,
float f,
ByteHash.Strategy strategy)
Creates a new hash set copying a given type-specific collection.
|
ByteOpenCustomHashSet(ByteHash.Strategy strategy)
Creates a new hash set with initial expected
Hash.DEFAULT_INITIAL_SIZE elements
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
ByteOpenCustomHashSet(ByteIterator i,
ByteHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by a type-specific iterator. |
ByteOpenCustomHashSet(ByteIterator i,
float f,
ByteHash.Strategy strategy)
Creates a new hash set using elements provided by a type-specific iterator.
|
ByteOpenCustomHashSet(Collection<? extends Byte> c,
ByteHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor
copying a given collection. |
ByteOpenCustomHashSet(Collection<? extends Byte> c,
float f,
ByteHash.Strategy strategy)
Creates a new hash set copying a given collection.
|
ByteOpenCustomHashSet(int expected,
ByteHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
ByteOpenCustomHashSet(int expected,
float f,
ByteHash.Strategy strategy)
Creates a new hash set.
|
ByteOpenCustomHashSet(Iterator<?> i,
ByteHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by an iterator. |
ByteOpenCustomHashSet(Iterator<?> i,
float f,
ByteHash.Strategy strategy)
Creates a new hash set using elements provided by an iterator.
|
Copyright © 2020. All rights reserved.