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 |
---|---|
IntSet |
IntSetFactory.newImmutableSet(Consumer<IntConsumer> elementsSupplier)
Constructs a new immutable set of elements consumed by the callback within the given closure.
|
IntSet |
IntSetFactory.newImmutableSet(Consumer<IntConsumer> elementsSupplier,
int expectedSize)
Constructs a new immutable set of elements consumed by the callback within the given closure.
|
IntSet |
IntSetFactory.newMutableSet(Consumer<IntConsumer> elementsSupplier)
Constructs a new mutable set of elements consumed by the callback within the given closure.
|
IntSet |
IntSetFactory.newMutableSet(Consumer<IntConsumer> elementsSupplier,
int expectedSize)
Constructs a new mutable set of elements consumed by the callback within the given closure.
|
IntSet |
IntSetFactory.newUpdatableSet(Consumer<IntConsumer> elementsSupplier)
Constructs a new updatable set of elements consumed by the callback within the given closure.
|
IntSet |
IntSetFactory.newUpdatableSet(Consumer<IntConsumer> elementsSupplier,
int expectedSize)
Constructs a new updatable set of elements consumed by the callback within the given closure.
|
Modifier and Type | Method and Description |
---|---|
HashIntSet |
HashIntSetFactory.newImmutableSet(Consumer<IntConsumer> elementsSupplier) |
static HashIntSet |
HashIntSets.newImmutableSet(Consumer<IntConsumer> elementsSupplier)
Constructs a new immutable set of elements consumed by the callback within the given closure.
|
HashIntSet |
HashIntSetFactory.newImmutableSet(Consumer<IntConsumer> elementsSupplier,
int expectedSize) |
static HashIntSet |
HashIntSets.newImmutableSet(Consumer<IntConsumer> elementsSupplier,
int expectedSize)
Constructs a new immutable set of elements consumed by the callback within the given closure.
|
HashIntSet |
HashIntSetFactory.newMutableSet(Consumer<IntConsumer> elementsSupplier) |
static HashIntSet |
HashIntSets.newMutableSet(Consumer<IntConsumer> elementsSupplier)
Constructs a new mutable set of elements consumed by the callback within the given closure.
|
HashIntSet |
HashIntSetFactory.newMutableSet(Consumer<IntConsumer> elementsSupplier,
int expectedSize) |
static HashIntSet |
HashIntSets.newMutableSet(Consumer<IntConsumer> elementsSupplier,
int expectedSize)
Constructs a new mutable set of elements consumed by the callback within the given closure.
|
HashIntSet |
HashIntSetFactory.newUpdatableSet(Consumer<IntConsumer> elementsSupplier) |
static HashIntSet |
HashIntSets.newUpdatableSet(Consumer<IntConsumer> elementsSupplier)
Constructs a new updatable set of elements consumed by the callback within the given closure.
|
HashIntSet |
HashIntSetFactory.newUpdatableSet(Consumer<IntConsumer> elementsSupplier,
int expectedSize) |
static HashIntSet |
HashIntSets.newUpdatableSet(Consumer<IntConsumer> elementsSupplier,
int expectedSize)
Constructs a new updatable set of elements consumed by the callback within the given closure.
|