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 |
---|---|
FloatSet |
FloatByteMap.keySet() |
FloatSet |
FloatCharMap.keySet() |
FloatSet |
FloatDoubleMap.keySet() |
FloatSet |
FloatFloatMap.keySet() |
FloatSet |
FloatIntMap.keySet() |
FloatSet |
FloatLongMap.keySet() |
FloatSet |
FloatObjMap.keySet() |
FloatSet |
FloatShortMap.keySet() |
Modifier and Type | Method and Description |
---|---|
FloatSet |
FloatSetFactory.newImmutableSet(Consumer<FloatConsumer> elementsSupplier)
Constructs a new immutable set of elements consumed by the callback within the given closure.
|
FloatSet |
FloatSetFactory.newImmutableSet(Consumer<FloatConsumer> elementsSupplier,
int expectedSize)
Constructs a new immutable set of elements consumed by the callback within the given closure.
|
FloatSet |
FloatSetFactory.newImmutableSet(float[] elements)
Constructs a new immutable set of elements from the given array.
|
FloatSet |
FloatSetFactory.newImmutableSet(Float[] elements)
Constructs a new immutable set of elements from the given array.
|
FloatSet |
FloatSetFactory.newImmutableSet(float[] elements,
int expectedSize)
Constructs a new immutable set of elements from the given array.
|
FloatSet |
FloatSetFactory.newImmutableSet(Float[] elements,
int expectedSize)
Constructs a new immutable set of elements from the given array.
|
FloatSet |
FloatSetFactory.newImmutableSet(Iterable<Float> elements)
Constructs a new immutable set containing the elements in the specified iterable.
|
FloatSet |
FloatSetFactory.newImmutableSet(Iterable<Float> elements,
int expectedSize)
Constructs a new immutable set containing the elements in the specified iterable.
|
FloatSet |
FloatSetFactory.newImmutableSet(Iterable<Float> elems1,
Iterable<Float> elems2)
Constructs a new immutable set which merge the elements of the specified iterables.
|
FloatSet |
FloatSetFactory.newImmutableSet(Iterable<Float> elems1,
Iterable<Float> elems2,
int expectedSize)
Constructs a new immutable set which merge the elements of the specified iterables.
|
FloatSet |
FloatSetFactory.newImmutableSet(Iterable<Float> elems1,
Iterable<Float> elems2,
Iterable<Float> elems3)
Constructs a new immutable set which merge the elements of the specified iterables.
|
FloatSet |
FloatSetFactory.newImmutableSet(Iterable<Float> elems1,
Iterable<Float> elems2,
Iterable<Float> elems3,
int expectedSize)
Constructs a new immutable set which merge the elements of the specified iterables.
|
FloatSet |
FloatSetFactory.newImmutableSet(Iterable<Float> elems1,
Iterable<Float> elems2,
Iterable<Float> elems3,
Iterable<Float> elems4)
Constructs a new immutable set which merge the elements of the specified iterables.
|
FloatSet |
FloatSetFactory.newImmutableSet(Iterable<Float> elems1,
Iterable<Float> elems2,
Iterable<Float> elems3,
Iterable<Float> elems4,
int expectedSize)
Constructs a new immutable set which merge the elements of the specified iterables.
|
FloatSet |
FloatSetFactory.newImmutableSet(Iterable<Float> elems1,
Iterable<Float> elems2,
Iterable<Float> elems3,
Iterable<Float> elems4,
Iterable<Float> elems5)
Constructs a new immutable set which merge the elements of the specified iterables.
|
FloatSet |
FloatSetFactory.newImmutableSet(Iterable<Float> elems1,
Iterable<Float> elems2,
Iterable<Float> elems3,
Iterable<Float> elems4,
Iterable<Float> elems5,
int expectedSize)
Constructs a new immutable set which merge the elements of the specified iterables.
|
FloatSet |
FloatSetFactory.newImmutableSet(Iterator<Float> elements)
Constructs a new immutable set containing the elements traversed by the specified iterator.
|
FloatSet |
FloatSetFactory.newImmutableSet(Iterator<Float> elements,
int expectedSize)
Constructs a new immutable set containing the elements traversed by the specified iterator.
|
FloatSet |
FloatSetFactory.newImmutableSetOf(float e1)
Constructs a new immutable singleton set of the given element.
|
FloatSet |
FloatSetFactory.newImmutableSetOf(float e1,
float e2)
Constructs a new immutable set of the two specified elements.
|
FloatSet |
FloatSetFactory.newImmutableSetOf(float e1,
float e2,
float e3)
Constructs a new immutable set of the three specified elements.
|
FloatSet |
FloatSetFactory.newImmutableSetOf(float e1,
float e2,
float e3,
float e4)
Constructs a new immutable set of the four specified elements.
|
FloatSet |
FloatSetFactory.newImmutableSetOf(float e1,
float e2,
float e3,
float e4,
float e5,
float... restElements)
Constructs a new immutable set of the specified elements.
|
FloatSet |
FloatSetFactory.newMutableSet()
Constructs a new empty mutable set of the default
expected size.
|
FloatSet |
FloatSetFactory.newMutableSet(Consumer<FloatConsumer> elementsSupplier)
Constructs a new mutable set of elements consumed by the callback within the given closure.
|
FloatSet |
FloatSetFactory.newMutableSet(Consumer<FloatConsumer> elementsSupplier,
int expectedSize)
Constructs a new mutable set of elements consumed by the callback within the given closure.
|
FloatSet |
FloatSetFactory.newMutableSet(float[] elements)
Constructs a new mutable set of elements from the given array.
|
FloatSet |
FloatSetFactory.newMutableSet(Float[] elements)
Constructs a new mutable set of elements from the given array.
|
FloatSet |
FloatSetFactory.newMutableSet(float[] elements,
int expectedSize)
Constructs a new mutable set of elements from the given array.
|
FloatSet |
FloatSetFactory.newMutableSet(Float[] elements,
int expectedSize)
Constructs a new mutable set of elements from the given array.
|
FloatSet |
FloatSetFactory.newMutableSet(int expectedSize)
Constructs a new empty mutable set of the given expected size.
|
FloatSet |
FloatSetFactory.newMutableSet(Iterable<Float> elements)
Constructs a new mutable set containing the elements in the specified iterable.
|
FloatSet |
FloatSetFactory.newMutableSet(Iterable<Float> elements,
int expectedSize)
Constructs a new mutable set containing the elements in the specified iterable.
|
FloatSet |
FloatSetFactory.newMutableSet(Iterable<Float> elems1,
Iterable<Float> elems2)
Constructs a new mutable set which merge the elements of the specified iterables.
|
FloatSet |
FloatSetFactory.newMutableSet(Iterable<Float> elems1,
Iterable<Float> elems2,
int expectedSize)
Constructs a new mutable set which merge the elements of the specified iterables.
|
FloatSet |
FloatSetFactory.newMutableSet(Iterable<Float> elems1,
Iterable<Float> elems2,
Iterable<Float> elems3)
Constructs a new mutable set which merge the elements of the specified iterables.
|
FloatSet |
FloatSetFactory.newMutableSet(Iterable<Float> elems1,
Iterable<Float> elems2,
Iterable<Float> elems3,
int expectedSize)
Constructs a new mutable set which merge the elements of the specified iterables.
|
FloatSet |
FloatSetFactory.newMutableSet(Iterable<Float> elems1,
Iterable<Float> elems2,
Iterable<Float> elems3,
Iterable<Float> elems4)
Constructs a new mutable set which merge the elements of the specified iterables.
|
FloatSet |
FloatSetFactory.newMutableSet(Iterable<Float> elems1,
Iterable<Float> elems2,
Iterable<Float> elems3,
Iterable<Float> elems4,
int expectedSize)
Constructs a new mutable set which merge the elements of the specified iterables.
|
FloatSet |
FloatSetFactory.newMutableSet(Iterable<Float> elems1,
Iterable<Float> elems2,
Iterable<Float> elems3,
Iterable<Float> elems4,
Iterable<Float> elems5)
Constructs a new mutable set which merge the elements of the specified iterables.
|
FloatSet |
FloatSetFactory.newMutableSet(Iterable<Float> elems1,
Iterable<Float> elems2,
Iterable<Float> elems3,
Iterable<Float> elems4,
Iterable<Float> elems5,
int expectedSize)
Constructs a new mutable set which merge the elements of the specified iterables.
|
FloatSet |
FloatSetFactory.newMutableSet(Iterator<Float> elements)
Constructs a new mutable set containing the elements traversed by the specified iterator.
|
FloatSet |
FloatSetFactory.newMutableSet(Iterator<Float> elements,
int expectedSize)
Constructs a new mutable set containing the elements traversed by the specified iterator.
|
FloatSet |
FloatSetFactory.newMutableSetOf(float e1)
Constructs a new mutable singleton set of the given element.
|
FloatSet |
FloatSetFactory.newMutableSetOf(float e1,
float e2)
Constructs a new mutable set of the two specified elements.
|
FloatSet |
FloatSetFactory.newMutableSetOf(float e1,
float e2,
float e3)
Constructs a new mutable set of the three specified elements.
|
FloatSet |
FloatSetFactory.newMutableSetOf(float e1,
float e2,
float e3,
float e4)
Constructs a new mutable set of the four specified elements.
|
FloatSet |
FloatSetFactory.newMutableSetOf(float e1,
float e2,
float e3,
float e4,
float e5,
float... restElements)
Constructs a new mutable set of the specified elements.
|
FloatSet |
FloatSetFactory.newUpdatableSet()
Constructs a new empty updatable set of the default
expected size.
|
FloatSet |
FloatSetFactory.newUpdatableSet(Consumer<FloatConsumer> elementsSupplier)
Constructs a new updatable set of elements consumed by the callback within the given closure.
|
FloatSet |
FloatSetFactory.newUpdatableSet(Consumer<FloatConsumer> elementsSupplier,
int expectedSize)
Constructs a new updatable set of elements consumed by the callback within the given closure.
|
FloatSet |
FloatSetFactory.newUpdatableSet(float[] elements)
Constructs a new updatable set of elements from the given array.
|
FloatSet |
FloatSetFactory.newUpdatableSet(Float[] elements)
Constructs a new updatable set of elements from the given array.
|
FloatSet |
FloatSetFactory.newUpdatableSet(float[] elements,
int expectedSize)
Constructs a new updatable set of elements from the given array.
|
FloatSet |
FloatSetFactory.newUpdatableSet(Float[] elements,
int expectedSize)
Constructs a new updatable set of elements from the given array.
|
FloatSet |
FloatSetFactory.newUpdatableSet(int expectedSize)
Constructs a new empty updatable set of the given expected size.
|
FloatSet |
FloatSetFactory.newUpdatableSet(Iterable<Float> elements)
Constructs a new updatable set containing the elements in the specified iterable.
|
FloatSet |
FloatSetFactory.newUpdatableSet(Iterable<Float> elements,
int expectedSize)
Constructs a new updatable set containing the elements in the specified iterable.
|
FloatSet |
FloatSetFactory.newUpdatableSet(Iterable<Float> elems1,
Iterable<Float> elems2)
Constructs a new updatable set which merge the elements of the specified iterables.
|
FloatSet |
FloatSetFactory.newUpdatableSet(Iterable<Float> elems1,
Iterable<Float> elems2,
int expectedSize)
Constructs a new updatable set which merge the elements of the specified iterables.
|
FloatSet |
FloatSetFactory.newUpdatableSet(Iterable<Float> elems1,
Iterable<Float> elems2,
Iterable<Float> elems3)
Constructs a new updatable set which merge the elements of the specified iterables.
|
FloatSet |
FloatSetFactory.newUpdatableSet(Iterable<Float> elems1,
Iterable<Float> elems2,
Iterable<Float> elems3,
int expectedSize)
Constructs a new updatable set which merge the elements of the specified iterables.
|
FloatSet |
FloatSetFactory.newUpdatableSet(Iterable<Float> elems1,
Iterable<Float> elems2,
Iterable<Float> elems3,
Iterable<Float> elems4)
Constructs a new updatable set which merge the elements of the specified iterables.
|
FloatSet |
FloatSetFactory.newUpdatableSet(Iterable<Float> elems1,
Iterable<Float> elems2,
Iterable<Float> elems3,
Iterable<Float> elems4,
int expectedSize)
Constructs a new updatable set which merge the elements of the specified iterables.
|
FloatSet |
FloatSetFactory.newUpdatableSet(Iterable<Float> elems1,
Iterable<Float> elems2,
Iterable<Float> elems3,
Iterable<Float> elems4,
Iterable<Float> elems5)
Constructs a new updatable set which merge the elements of the specified iterables.
|
FloatSet |
FloatSetFactory.newUpdatableSet(Iterable<Float> elems1,
Iterable<Float> elems2,
Iterable<Float> elems3,
Iterable<Float> elems4,
Iterable<Float> elems5,
int expectedSize)
Constructs a new updatable set which merge the elements of the specified iterables.
|
FloatSet |
FloatSetFactory.newUpdatableSet(Iterator<Float> elements)
Constructs a new updatable set containing the elements traversed by the specified iterator.
|
FloatSet |
FloatSetFactory.newUpdatableSet(Iterator<Float> elements,
int expectedSize)
Constructs a new updatable set containing the elements traversed by the specified iterator.
|
FloatSet |
FloatSetFactory.newUpdatableSetOf(float e1)
Constructs a new updatable singleton set of the given element.
|
FloatSet |
FloatSetFactory.newUpdatableSetOf(float e1,
float e2)
Constructs a new updatable set of the two specified elements.
|
FloatSet |
FloatSetFactory.newUpdatableSetOf(float e1,
float e2,
float e3)
Constructs a new updatable set of the three specified elements.
|
FloatSet |
FloatSetFactory.newUpdatableSetOf(float e1,
float e2,
float e3,
float e4)
Constructs a new updatable set of the four specified elements.
|
FloatSet |
FloatSetFactory.newUpdatableSetOf(float e1,
float e2,
float e3,
float e4,
float e5,
float... restElements)
Constructs a new updatable set of the specified elements.
|
Modifier and Type | Interface and Description |
---|---|
interface |
HashFloatSet
An interface for
FloatSet s, based on hash tables. |