Package | Description |
---|---|
com.koloboke.collect.map |
Contains interfaces of
Map specializations, their factories and cursors. |
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 |
DoubleByteMap.keySet() |
DoubleSet |
DoubleCharMap.keySet() |
DoubleSet |
DoubleDoubleMap.keySet() |
DoubleSet |
DoubleFloatMap.keySet() |
DoubleSet |
DoubleIntMap.keySet() |
DoubleSet |
DoubleLongMap.keySet() |
DoubleSet |
DoubleObjMap.keySet() |
DoubleSet |
DoubleShortMap.keySet() |
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.newImmutableSet(double[] elements)
Constructs a new immutable set of elements from the given array.
|
DoubleSet |
DoubleSetFactory.newImmutableSet(Double[] elements)
Constructs a new immutable set of elements from the given array.
|
DoubleSet |
DoubleSetFactory.newImmutableSet(double[] elements,
int expectedSize)
Constructs a new immutable set of elements from the given array.
|
DoubleSet |
DoubleSetFactory.newImmutableSet(Double[] elements,
int expectedSize)
Constructs a new immutable set of elements from the given array.
|
DoubleSet |
DoubleSetFactory.newImmutableSet(Iterable<Double> elements)
Constructs a new immutable set containing the elements in the specified iterable.
|
DoubleSet |
DoubleSetFactory.newImmutableSet(Iterable<Double> elements,
int expectedSize)
Constructs a new immutable set containing the elements in the specified iterable.
|
DoubleSet |
DoubleSetFactory.newImmutableSet(Iterable<Double> elems1,
Iterable<Double> elems2)
Constructs a new immutable set which merge the elements of the specified iterables.
|
DoubleSet |
DoubleSetFactory.newImmutableSet(Iterable<Double> elems1,
Iterable<Double> elems2,
int expectedSize)
Constructs a new immutable set which merge the elements of the specified iterables.
|
DoubleSet |
DoubleSetFactory.newImmutableSet(Iterable<Double> elems1,
Iterable<Double> elems2,
Iterable<Double> elems3)
Constructs a new immutable set which merge the elements of the specified iterables.
|
DoubleSet |
DoubleSetFactory.newImmutableSet(Iterable<Double> elems1,
Iterable<Double> elems2,
Iterable<Double> elems3,
int expectedSize)
Constructs a new immutable set which merge the elements of the specified iterables.
|
DoubleSet |
DoubleSetFactory.newImmutableSet(Iterable<Double> elems1,
Iterable<Double> elems2,
Iterable<Double> elems3,
Iterable<Double> elems4)
Constructs a new immutable set which merge the elements of the specified iterables.
|
DoubleSet |
DoubleSetFactory.newImmutableSet(Iterable<Double> elems1,
Iterable<Double> elems2,
Iterable<Double> elems3,
Iterable<Double> elems4,
int expectedSize)
Constructs a new immutable set which merge the elements of the specified iterables.
|
DoubleSet |
DoubleSetFactory.newImmutableSet(Iterable<Double> elems1,
Iterable<Double> elems2,
Iterable<Double> elems3,
Iterable<Double> elems4,
Iterable<Double> elems5)
Constructs a new immutable set which merge the elements of the specified iterables.
|
DoubleSet |
DoubleSetFactory.newImmutableSet(Iterable<Double> elems1,
Iterable<Double> elems2,
Iterable<Double> elems3,
Iterable<Double> elems4,
Iterable<Double> elems5,
int expectedSize)
Constructs a new immutable set which merge the elements of the specified iterables.
|
DoubleSet |
DoubleSetFactory.newImmutableSet(Iterator<Double> elements)
Constructs a new immutable set containing the elements traversed by the specified iterator.
|
DoubleSet |
DoubleSetFactory.newImmutableSet(Iterator<Double> elements,
int expectedSize)
Constructs a new immutable set containing the elements traversed by the specified iterator.
|
DoubleSet |
DoubleSetFactory.newImmutableSetOf(double e1)
Constructs a new immutable singleton set of the given element.
|
DoubleSet |
DoubleSetFactory.newImmutableSetOf(double e1,
double e2)
Constructs a new immutable set of the two specified elements.
|
DoubleSet |
DoubleSetFactory.newImmutableSetOf(double e1,
double e2,
double e3)
Constructs a new immutable set of the three specified elements.
|
DoubleSet |
DoubleSetFactory.newImmutableSetOf(double e1,
double e2,
double e3,
double e4)
Constructs a new immutable set of the four specified elements.
|
DoubleSet |
DoubleSetFactory.newImmutableSetOf(double e1,
double e2,
double e3,
double e4,
double e5,
double... restElements)
Constructs a new immutable set of the specified elements.
|
DoubleSet |
DoubleSetFactory.newMutableSet()
Constructs a new empty mutable set of the default
expected size.
|
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.newMutableSet(double[] elements)
Constructs a new mutable set of elements from the given array.
|
DoubleSet |
DoubleSetFactory.newMutableSet(Double[] elements)
Constructs a new mutable set of elements from the given array.
|
DoubleSet |
DoubleSetFactory.newMutableSet(double[] elements,
int expectedSize)
Constructs a new mutable set of elements from the given array.
|
DoubleSet |
DoubleSetFactory.newMutableSet(Double[] elements,
int expectedSize)
Constructs a new mutable set of elements from the given array.
|
DoubleSet |
DoubleSetFactory.newMutableSet(int expectedSize)
Constructs a new empty mutable set of the given expected size.
|
DoubleSet |
DoubleSetFactory.newMutableSet(Iterable<Double> elements)
Constructs a new mutable set containing the elements in the specified iterable.
|
DoubleSet |
DoubleSetFactory.newMutableSet(Iterable<Double> elements,
int expectedSize)
Constructs a new mutable set containing the elements in the specified iterable.
|
DoubleSet |
DoubleSetFactory.newMutableSet(Iterable<Double> elems1,
Iterable<Double> elems2)
Constructs a new mutable set which merge the elements of the specified iterables.
|
DoubleSet |
DoubleSetFactory.newMutableSet(Iterable<Double> elems1,
Iterable<Double> elems2,
int expectedSize)
Constructs a new mutable set which merge the elements of the specified iterables.
|
DoubleSet |
DoubleSetFactory.newMutableSet(Iterable<Double> elems1,
Iterable<Double> elems2,
Iterable<Double> elems3)
Constructs a new mutable set which merge the elements of the specified iterables.
|
DoubleSet |
DoubleSetFactory.newMutableSet(Iterable<Double> elems1,
Iterable<Double> elems2,
Iterable<Double> elems3,
int expectedSize)
Constructs a new mutable set which merge the elements of the specified iterables.
|
DoubleSet |
DoubleSetFactory.newMutableSet(Iterable<Double> elems1,
Iterable<Double> elems2,
Iterable<Double> elems3,
Iterable<Double> elems4)
Constructs a new mutable set which merge the elements of the specified iterables.
|
DoubleSet |
DoubleSetFactory.newMutableSet(Iterable<Double> elems1,
Iterable<Double> elems2,
Iterable<Double> elems3,
Iterable<Double> elems4,
int expectedSize)
Constructs a new mutable set which merge the elements of the specified iterables.
|
DoubleSet |
DoubleSetFactory.newMutableSet(Iterable<Double> elems1,
Iterable<Double> elems2,
Iterable<Double> elems3,
Iterable<Double> elems4,
Iterable<Double> elems5)
Constructs a new mutable set which merge the elements of the specified iterables.
|
DoubleSet |
DoubleSetFactory.newMutableSet(Iterable<Double> elems1,
Iterable<Double> elems2,
Iterable<Double> elems3,
Iterable<Double> elems4,
Iterable<Double> elems5,
int expectedSize)
Constructs a new mutable set which merge the elements of the specified iterables.
|
DoubleSet |
DoubleSetFactory.newMutableSet(Iterator<Double> elements)
Constructs a new mutable set containing the elements traversed by the specified iterator.
|
DoubleSet |
DoubleSetFactory.newMutableSet(Iterator<Double> elements,
int expectedSize)
Constructs a new mutable set containing the elements traversed by the specified iterator.
|
DoubleSet |
DoubleSetFactory.newMutableSetOf(double e1)
Constructs a new mutable singleton set of the given element.
|
DoubleSet |
DoubleSetFactory.newMutableSetOf(double e1,
double e2)
Constructs a new mutable set of the two specified elements.
|
DoubleSet |
DoubleSetFactory.newMutableSetOf(double e1,
double e2,
double e3)
Constructs a new mutable set of the three specified elements.
|
DoubleSet |
DoubleSetFactory.newMutableSetOf(double e1,
double e2,
double e3,
double e4)
Constructs a new mutable set of the four specified elements.
|
DoubleSet |
DoubleSetFactory.newMutableSetOf(double e1,
double e2,
double e3,
double e4,
double e5,
double... restElements)
Constructs a new mutable set of the specified elements.
|
DoubleSet |
DoubleSetFactory.newUpdatableSet()
Constructs a new empty updatable set of the default
expected size.
|
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.
|
DoubleSet |
DoubleSetFactory.newUpdatableSet(double[] elements)
Constructs a new updatable set of elements from the given array.
|
DoubleSet |
DoubleSetFactory.newUpdatableSet(Double[] elements)
Constructs a new updatable set of elements from the given array.
|
DoubleSet |
DoubleSetFactory.newUpdatableSet(double[] elements,
int expectedSize)
Constructs a new updatable set of elements from the given array.
|
DoubleSet |
DoubleSetFactory.newUpdatableSet(Double[] elements,
int expectedSize)
Constructs a new updatable set of elements from the given array.
|
DoubleSet |
DoubleSetFactory.newUpdatableSet(int expectedSize)
Constructs a new empty updatable set of the given expected size.
|
DoubleSet |
DoubleSetFactory.newUpdatableSet(Iterable<Double> elements)
Constructs a new updatable set containing the elements in the specified iterable.
|
DoubleSet |
DoubleSetFactory.newUpdatableSet(Iterable<Double> elements,
int expectedSize)
Constructs a new updatable set containing the elements in the specified iterable.
|
DoubleSet |
DoubleSetFactory.newUpdatableSet(Iterable<Double> elems1,
Iterable<Double> elems2)
Constructs a new updatable set which merge the elements of the specified iterables.
|
DoubleSet |
DoubleSetFactory.newUpdatableSet(Iterable<Double> elems1,
Iterable<Double> elems2,
int expectedSize)
Constructs a new updatable set which merge the elements of the specified iterables.
|
DoubleSet |
DoubleSetFactory.newUpdatableSet(Iterable<Double> elems1,
Iterable<Double> elems2,
Iterable<Double> elems3)
Constructs a new updatable set which merge the elements of the specified iterables.
|
DoubleSet |
DoubleSetFactory.newUpdatableSet(Iterable<Double> elems1,
Iterable<Double> elems2,
Iterable<Double> elems3,
int expectedSize)
Constructs a new updatable set which merge the elements of the specified iterables.
|
DoubleSet |
DoubleSetFactory.newUpdatableSet(Iterable<Double> elems1,
Iterable<Double> elems2,
Iterable<Double> elems3,
Iterable<Double> elems4)
Constructs a new updatable set which merge the elements of the specified iterables.
|
DoubleSet |
DoubleSetFactory.newUpdatableSet(Iterable<Double> elems1,
Iterable<Double> elems2,
Iterable<Double> elems3,
Iterable<Double> elems4,
int expectedSize)
Constructs a new updatable set which merge the elements of the specified iterables.
|
DoubleSet |
DoubleSetFactory.newUpdatableSet(Iterable<Double> elems1,
Iterable<Double> elems2,
Iterable<Double> elems3,
Iterable<Double> elems4,
Iterable<Double> elems5)
Constructs a new updatable set which merge the elements of the specified iterables.
|
DoubleSet |
DoubleSetFactory.newUpdatableSet(Iterable<Double> elems1,
Iterable<Double> elems2,
Iterable<Double> elems3,
Iterable<Double> elems4,
Iterable<Double> elems5,
int expectedSize)
Constructs a new updatable set which merge the elements of the specified iterables.
|
DoubleSet |
DoubleSetFactory.newUpdatableSet(Iterator<Double> elements)
Constructs a new updatable set containing the elements traversed by the specified iterator.
|
DoubleSet |
DoubleSetFactory.newUpdatableSet(Iterator<Double> elements,
int expectedSize)
Constructs a new updatable set containing the elements traversed by the specified iterator.
|
DoubleSet |
DoubleSetFactory.newUpdatableSetOf(double e1)
Constructs a new updatable singleton set of the given element.
|
DoubleSet |
DoubleSetFactory.newUpdatableSetOf(double e1,
double e2)
Constructs a new updatable set of the two specified elements.
|
DoubleSet |
DoubleSetFactory.newUpdatableSetOf(double e1,
double e2,
double e3)
Constructs a new updatable set of the three specified elements.
|
DoubleSet |
DoubleSetFactory.newUpdatableSetOf(double e1,
double e2,
double e3,
double e4)
Constructs a new updatable set of the four specified elements.
|
DoubleSet |
DoubleSetFactory.newUpdatableSetOf(double e1,
double e2,
double e3,
double e4,
double e5,
double... restElements)
Constructs a new updatable set of the specified elements.
|
Modifier and Type | Interface and Description |
---|---|
interface |
HashDoubleSet
An interface for
DoubleSet s, based on hash tables. |