| Package | Description |
|---|---|
| it.unimi.dsi.fastutil.longs |
Provides type-specific classes for long elements or keys.
|
| Modifier and Type | Field and Description |
|---|---|
protected LongHash.Strategy |
LongLinkedOpenCustomHashSet.strategy
The hash strategy of this custom set.
|
protected LongHash.Strategy |
LongOpenCustomHashSet.strategy
The hash strategy of this custom set.
|
| Modifier and Type | Method and Description |
|---|---|
LongHash.Strategy |
LongLinkedOpenCustomHashSet.strategy()
Returns the hashing strategy.
|
LongHash.Strategy |
LongOpenCustomHashSet.strategy()
Returns the hashing strategy.
|
| Constructor and Description |
|---|
LongLinkedOpenCustomHashSet(Collection<? extends Long> c,
float f,
LongHash.Strategy strategy)
Creates a new hash set copying a given collection.
|
LongLinkedOpenCustomHashSet(Collection<? extends Long> c,
LongHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor
copying a given collection. |
LongLinkedOpenCustomHashSet(int expected,
float f,
LongHash.Strategy strategy)
Creates a new hash set.
|
LongLinkedOpenCustomHashSet(int expected,
LongHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
LongLinkedOpenCustomHashSet(Iterator<?> i,
float f,
LongHash.Strategy strategy)
Creates a new hash set using elements provided by an iterator.
|
LongLinkedOpenCustomHashSet(Iterator<?> i,
LongHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by an iterator. |
LongLinkedOpenCustomHashSet(long[] a,
float f,
LongHash.Strategy strategy)
Creates a new hash set copying the elements of an array.
|
LongLinkedOpenCustomHashSet(long[] a,
int offset,
int length,
float f,
LongHash.Strategy strategy)
Creates a new hash set and fills it with the elements of a given array.
|
LongLinkedOpenCustomHashSet(long[] a,
int offset,
int length,
LongHash.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. |
LongLinkedOpenCustomHashSet(long[] a,
LongHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor
copying the elements of an array. |
LongLinkedOpenCustomHashSet(LongCollection c,
float f,
LongHash.Strategy strategy)
Creates a new hash set copying a given type-specific collection.
|
LongLinkedOpenCustomHashSet(LongCollection c,
LongHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor
copying a given type-specific collection. |
LongLinkedOpenCustomHashSet(LongHash.Strategy strategy)
Creates a new hash set with initial expected
Hash.DEFAULT_INITIAL_SIZE elements
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
LongLinkedOpenCustomHashSet(LongIterator i,
float f,
LongHash.Strategy strategy)
Creates a new hash set using elements provided by a type-specific iterator.
|
LongLinkedOpenCustomHashSet(LongIterator i,
LongHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by a type-specific iterator. |
LongOpenCustomHashSet(Collection<? extends Long> c,
float f,
LongHash.Strategy strategy)
Creates a new hash set copying a given collection.
|
LongOpenCustomHashSet(Collection<? extends Long> c,
LongHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor
copying a given collection. |
LongOpenCustomHashSet(int expected,
float f,
LongHash.Strategy strategy)
Creates a new hash set.
|
LongOpenCustomHashSet(int expected,
LongHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
LongOpenCustomHashSet(Iterator<?> i,
float f,
LongHash.Strategy strategy)
Creates a new hash set using elements provided by an iterator.
|
LongOpenCustomHashSet(Iterator<?> i,
LongHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by an iterator. |
LongOpenCustomHashSet(long[] a,
float f,
LongHash.Strategy strategy)
Creates a new hash set copying the elements of an array.
|
LongOpenCustomHashSet(long[] a,
int offset,
int length,
float f,
LongHash.Strategy strategy)
Creates a new hash set and fills it with the elements of a given array.
|
LongOpenCustomHashSet(long[] a,
int offset,
int length,
LongHash.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. |
LongOpenCustomHashSet(long[] a,
LongHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor
copying the elements of an array. |
LongOpenCustomHashSet(LongCollection c,
float f,
LongHash.Strategy strategy)
Creates a new hash set copying a given type-specific collection.
|
LongOpenCustomHashSet(LongCollection c,
LongHash.Strategy strategy)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor
copying a given type-specific collection. |
LongOpenCustomHashSet(LongHash.Strategy strategy)
Creates a new hash set with initial expected
Hash.DEFAULT_INITIAL_SIZE elements
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
LongOpenCustomHashSet(LongIterator i,
float f,
LongHash.Strategy strategy)
Creates a new hash set using elements provided by a type-specific iterator.
|
LongOpenCustomHashSet(LongIterator i,
LongHash.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.