static <A> HashSet<A> |
HashSet.arrayHashSet(A... as) |
Create a HashSet from the array.
|
static <A> HashSet<A> |
HashSet.arrayHashSet(Equal<A> e,
Hash<A> h,
A... as) |
Create a HashSet from the array.
|
static <A> HashSet<A> |
HashSet.empty() |
Creates an empty HashSet
|
static <A> HashSet<A> |
HashSet.empty(Equal<A> e,
Hash<A> h) |
Creates a new HashSet using the given Equal and Hash
|
static <A> HashSet<A> |
HashSet.fromSet(java.util.Set<A> s) |
|
static <A> HashSet<A> |
HashSet.hashSet(A... as) |
Create a HashSet from the array.
|
static <A> HashSet<A> |
HashSet.hashSet(Equal<A> e,
Hash<A> h,
A... as) |
Create a HashSet from the array.
|
static <A> HashSet<A> |
HashSet.iterableHashSet(Equal<A> e,
Hash<A> h,
java.lang.Iterable<A> it) |
Create a HashSet from the Iterable.
|
static <A> HashSet<A> |
HashSet.iterableHashSet(java.lang.Iterable<A> it) |
Create a HashSet from the Iterable.
|
static <A> HashSet<A> |
HashSet.iteratorHashSet(Equal<A> e,
Hash<A> h,
java.util.Iterator<A> it) |
Create a HashSet from the Iterator.
|
static <A> HashSet<A> |
HashSet.iteratorHashSet(java.util.Iterator<A> it) |
Create a HashSet from the Iterator.
|