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 |
---|---|
DoubleSet |
DoubleSetFactory.newImmutableSet(Consumer<DoubleConsumer> elementsSupplier)
Constructs a new immutable set of elements consumed by the callback within the given closure.
|
DoubleSet |
DoubleSetFactory.newImmutableSet(Consumer<DoubleConsumer> elementsSupplier,
int expectedSize)
Constructs a new immutable set of elements consumed by the callback within the given closure.
|
DoubleSet |
DoubleSetFactory.newMutableSet(Consumer<DoubleConsumer> elementsSupplier)
Constructs a new mutable set of elements consumed by the callback within the given closure.
|
DoubleSet |
DoubleSetFactory.newMutableSet(Consumer<DoubleConsumer> elementsSupplier,
int expectedSize)
Constructs a new mutable set of elements consumed by the callback within the given closure.
|
DoubleSet |
DoubleSetFactory.newUpdatableSet(Consumer<DoubleConsumer> elementsSupplier)
Constructs a new updatable set of elements consumed by the callback within the given closure.
|
DoubleSet |
DoubleSetFactory.newUpdatableSet(Consumer<DoubleConsumer> elementsSupplier,
int expectedSize)
Constructs a new updatable set of elements consumed by the callback within the given closure.
|
Modifier and Type | Method and Description |
---|---|
HashDoubleSet |
HashDoubleSetFactory.newImmutableSet(Consumer<DoubleConsumer> elementsSupplier) |
static HashDoubleSet |
HashDoubleSets.newImmutableSet(Consumer<DoubleConsumer> elementsSupplier)
Constructs a new immutable set of elements consumed by the callback within the given closure.
|
HashDoubleSet |
HashDoubleSetFactory.newImmutableSet(Consumer<DoubleConsumer> elementsSupplier,
int expectedSize) |
static HashDoubleSet |
HashDoubleSets.newImmutableSet(Consumer<DoubleConsumer> elementsSupplier,
int expectedSize)
Constructs a new immutable set of elements consumed by the callback within the given closure.
|
HashDoubleSet |
HashDoubleSetFactory.newMutableSet(Consumer<DoubleConsumer> elementsSupplier) |
static HashDoubleSet |
HashDoubleSets.newMutableSet(Consumer<DoubleConsumer> elementsSupplier)
Constructs a new mutable set of elements consumed by the callback within the given closure.
|
HashDoubleSet |
HashDoubleSetFactory.newMutableSet(Consumer<DoubleConsumer> elementsSupplier,
int expectedSize) |
static HashDoubleSet |
HashDoubleSets.newMutableSet(Consumer<DoubleConsumer> elementsSupplier,
int expectedSize)
Constructs a new mutable set of elements consumed by the callback within the given closure.
|
HashDoubleSet |
HashDoubleSetFactory.newUpdatableSet(Consumer<DoubleConsumer> elementsSupplier) |
static HashDoubleSet |
HashDoubleSets.newUpdatableSet(Consumer<DoubleConsumer> elementsSupplier)
Constructs a new updatable set of elements consumed by the callback within the given closure.
|
HashDoubleSet |
HashDoubleSetFactory.newUpdatableSet(Consumer<DoubleConsumer> elementsSupplier,
int expectedSize) |
static HashDoubleSet |
HashDoubleSets.newUpdatableSet(Consumer<DoubleConsumer> elementsSupplier,
int expectedSize)
Constructs a new updatable set of elements consumed by the callback within the given closure.
|