Package | Description |
---|---|
com.koloboke.collect.set |
Contains interfaces of
Set specializations and their factories. |
com.koloboke.collect.set.hash |
Contains interfaces of
Set specializations, based on hash tables,
their factories and static factory methods. |
Modifier and Type | Method and Description |
---|---|
<E2 extends E> |
ObjSetFactory.newImmutableSet(Consumer<Consumer<E2>> elementsSupplier)
Constructs a new immutable set of elements consumed by the callback within the given closure.
|
<E2 extends E> |
ObjSetFactory.newImmutableSet(Consumer<Consumer<E2>> elementsSupplier,
int expectedSize)
Constructs a new immutable set of elements consumed by the callback within the given closure.
|
<E2 extends E> |
ObjSetFactory.newMutableSet(Consumer<Consumer<E2>> elementsSupplier)
Constructs a new mutable set of elements consumed by the callback within the given closure.
|
<E2 extends E> |
ObjSetFactory.newMutableSet(Consumer<Consumer<E2>> elementsSupplier,
int expectedSize)
Constructs a new mutable set of elements consumed by the callback within the given closure.
|
<E2 extends E> |
ObjSetFactory.newUpdatableSet(Consumer<Consumer<E2>> elementsSupplier)
Constructs a new updatable set of elements consumed by the callback within the given closure.
|
<E2 extends E> |
ObjSetFactory.newUpdatableSet(Consumer<Consumer<E2>> elementsSupplier,
int expectedSize)
Constructs a new updatable set of elements consumed by the callback within the given closure.
|
Modifier and Type | Method and Description |
---|---|
static <E> HashObjSet<E> |
HashObjSets.newImmutableSet(Consumer<Consumer<E>> elementsSupplier)
Constructs a new immutable set of elements consumed by the callback within the given closure.
|
static <E> HashObjSet<E> |
HashObjSets.newImmutableSet(Consumer<Consumer<E>> elementsSupplier,
int expectedSize)
Constructs a new immutable set of elements consumed by the callback within the given closure.
|
<E2 extends E> |
HashObjSetFactory.newImmutableSet(Consumer<Consumer<E2>> elementsSupplier) |
<E2 extends E> |
HashObjSetFactory.newImmutableSet(Consumer<Consumer<E2>> elementsSupplier,
int expectedSize) |
static <E> HashObjSet<E> |
HashObjSets.newMutableSet(Consumer<Consumer<E>> elementsSupplier)
Constructs a new mutable set of elements consumed by the callback within the given closure.
|
static <E> HashObjSet<E> |
HashObjSets.newMutableSet(Consumer<Consumer<E>> elementsSupplier,
int expectedSize)
Constructs a new mutable set of elements consumed by the callback within the given closure.
|
<E2 extends E> |
HashObjSetFactory.newMutableSet(Consumer<Consumer<E2>> elementsSupplier) |
<E2 extends E> |
HashObjSetFactory.newMutableSet(Consumer<Consumer<E2>> elementsSupplier,
int expectedSize) |
static <E> HashObjSet<E> |
HashObjSets.newUpdatableSet(Consumer<Consumer<E>> elementsSupplier)
Constructs a new updatable set of elements consumed by the callback within the given closure.
|
static <E> HashObjSet<E> |
HashObjSets.newUpdatableSet(Consumer<Consumer<E>> elementsSupplier,
int expectedSize)
Constructs a new updatable set of elements consumed by the callback within the given closure.
|
<E2 extends E> |
HashObjSetFactory.newUpdatableSet(Consumer<Consumer<E2>> elementsSupplier) |
<E2 extends E> |
HashObjSetFactory.newUpdatableSet(Consumer<Consumer<E2>> elementsSupplier,
int expectedSize) |