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 |
---|---|
LongSet |
LongSetFactory.newImmutableSet(Consumer<LongConsumer> elementsSupplier)
Constructs a new immutable set of elements consumed by the callback within the given closure.
|
LongSet |
LongSetFactory.newImmutableSet(Consumer<LongConsumer> elementsSupplier,
int expectedSize)
Constructs a new immutable set of elements consumed by the callback within the given closure.
|
LongSet |
LongSetFactory.newMutableSet(Consumer<LongConsumer> elementsSupplier)
Constructs a new mutable set of elements consumed by the callback within the given closure.
|
LongSet |
LongSetFactory.newMutableSet(Consumer<LongConsumer> elementsSupplier,
int expectedSize)
Constructs a new mutable set of elements consumed by the callback within the given closure.
|
LongSet |
LongSetFactory.newUpdatableSet(Consumer<LongConsumer> elementsSupplier)
Constructs a new updatable set of elements consumed by the callback within the given closure.
|
LongSet |
LongSetFactory.newUpdatableSet(Consumer<LongConsumer> elementsSupplier,
int expectedSize)
Constructs a new updatable set of elements consumed by the callback within the given closure.
|
Modifier and Type | Method and Description |
---|---|
HashLongSet |
HashLongSetFactory.newImmutableSet(Consumer<LongConsumer> elementsSupplier) |
static HashLongSet |
HashLongSets.newImmutableSet(Consumer<LongConsumer> elementsSupplier)
Constructs a new immutable set of elements consumed by the callback within the given closure.
|
HashLongSet |
HashLongSetFactory.newImmutableSet(Consumer<LongConsumer> elementsSupplier,
int expectedSize) |
static HashLongSet |
HashLongSets.newImmutableSet(Consumer<LongConsumer> elementsSupplier,
int expectedSize)
Constructs a new immutable set of elements consumed by the callback within the given closure.
|
HashLongSet |
HashLongSetFactory.newMutableSet(Consumer<LongConsumer> elementsSupplier) |
static HashLongSet |
HashLongSets.newMutableSet(Consumer<LongConsumer> elementsSupplier)
Constructs a new mutable set of elements consumed by the callback within the given closure.
|
HashLongSet |
HashLongSetFactory.newMutableSet(Consumer<LongConsumer> elementsSupplier,
int expectedSize) |
static HashLongSet |
HashLongSets.newMutableSet(Consumer<LongConsumer> elementsSupplier,
int expectedSize)
Constructs a new mutable set of elements consumed by the callback within the given closure.
|
HashLongSet |
HashLongSetFactory.newUpdatableSet(Consumer<LongConsumer> elementsSupplier) |
static HashLongSet |
HashLongSets.newUpdatableSet(Consumer<LongConsumer> elementsSupplier)
Constructs a new updatable set of elements consumed by the callback within the given closure.
|
HashLongSet |
HashLongSetFactory.newUpdatableSet(Consumer<LongConsumer> elementsSupplier,
int expectedSize) |
static HashLongSet |
HashLongSets.newUpdatableSet(Consumer<LongConsumer> elementsSupplier,
int expectedSize)
Constructs a new updatable set of elements consumed by the callback within the given closure.
|