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 |
---|---|
CharSet |
CharByteMap.keySet() |
CharSet |
CharCharMap.keySet() |
CharSet |
CharDoubleMap.keySet() |
CharSet |
CharFloatMap.keySet() |
CharSet |
CharIntMap.keySet() |
CharSet |
CharLongMap.keySet() |
CharSet |
CharObjMap.keySet() |
CharSet |
CharShortMap.keySet() |
Modifier and Type | Method and Description |
---|---|
CharSet |
CharSetFactory.newImmutableSet(char[] elements)
Constructs a new immutable set of elements from the given array.
|
CharSet |
CharSetFactory.newImmutableSet(char[] elements,
int expectedSize)
Constructs a new immutable set of elements from the given array.
|
CharSet |
CharSetFactory.newImmutableSet(Character[] elements)
Constructs a new immutable set of elements from the given array.
|
CharSet |
CharSetFactory.newImmutableSet(Character[] elements,
int expectedSize)
Constructs a new immutable set of elements from the given array.
|
CharSet |
CharSetFactory.newImmutableSet(Consumer<CharConsumer> elementsSupplier)
Constructs a new immutable set of elements consumed by the callback within the given closure.
|
CharSet |
CharSetFactory.newImmutableSet(Consumer<CharConsumer> elementsSupplier,
int expectedSize)
Constructs a new immutable set of elements consumed by the callback within the given closure.
|
CharSet |
CharSetFactory.newImmutableSet(Iterable<Character> elements)
Constructs a new immutable set containing the elements in the specified iterable.
|
CharSet |
CharSetFactory.newImmutableSet(Iterable<Character> elements,
int expectedSize)
Constructs a new immutable set containing the elements in the specified iterable.
|
CharSet |
CharSetFactory.newImmutableSet(Iterable<Character> elems1,
Iterable<Character> elems2)
Constructs a new immutable set which merge the elements of the specified iterables.
|
CharSet |
CharSetFactory.newImmutableSet(Iterable<Character> elems1,
Iterable<Character> elems2,
int expectedSize)
Constructs a new immutable set which merge the elements of the specified iterables.
|
CharSet |
CharSetFactory.newImmutableSet(Iterable<Character> elems1,
Iterable<Character> elems2,
Iterable<Character> elems3)
Constructs a new immutable set which merge the elements of the specified iterables.
|
CharSet |
CharSetFactory.newImmutableSet(Iterable<Character> elems1,
Iterable<Character> elems2,
Iterable<Character> elems3,
int expectedSize)
Constructs a new immutable set which merge the elements of the specified iterables.
|
CharSet |
CharSetFactory.newImmutableSet(Iterable<Character> elems1,
Iterable<Character> elems2,
Iterable<Character> elems3,
Iterable<Character> elems4)
Constructs a new immutable set which merge the elements of the specified iterables.
|
CharSet |
CharSetFactory.newImmutableSet(Iterable<Character> elems1,
Iterable<Character> elems2,
Iterable<Character> elems3,
Iterable<Character> elems4,
int expectedSize)
Constructs a new immutable set which merge the elements of the specified iterables.
|
CharSet |
CharSetFactory.newImmutableSet(Iterable<Character> elems1,
Iterable<Character> elems2,
Iterable<Character> elems3,
Iterable<Character> elems4,
Iterable<Character> elems5)
Constructs a new immutable set which merge the elements of the specified iterables.
|
CharSet |
CharSetFactory.newImmutableSet(Iterable<Character> elems1,
Iterable<Character> elems2,
Iterable<Character> elems3,
Iterable<Character> elems4,
Iterable<Character> elems5,
int expectedSize)
Constructs a new immutable set which merge the elements of the specified iterables.
|
CharSet |
CharSetFactory.newImmutableSet(Iterator<Character> elements)
Constructs a new immutable set containing the elements traversed by the specified iterator.
|
CharSet |
CharSetFactory.newImmutableSet(Iterator<Character> elements,
int expectedSize)
Constructs a new immutable set containing the elements traversed by the specified iterator.
|
CharSet |
CharSetFactory.newImmutableSetOf(char e1)
Constructs a new immutable singleton set of the given element.
|
CharSet |
CharSetFactory.newImmutableSetOf(char e1,
char e2)
Constructs a new immutable set of the two specified elements.
|
CharSet |
CharSetFactory.newImmutableSetOf(char e1,
char e2,
char e3)
Constructs a new immutable set of the three specified elements.
|
CharSet |
CharSetFactory.newImmutableSetOf(char e1,
char e2,
char e3,
char e4)
Constructs a new immutable set of the four specified elements.
|
CharSet |
CharSetFactory.newImmutableSetOf(char e1,
char e2,
char e3,
char e4,
char e5,
char... restElements)
Constructs a new immutable set of the specified elements.
|
CharSet |
CharSetFactory.newMutableSet()
Constructs a new empty mutable set of the default
expected size.
|
CharSet |
CharSetFactory.newMutableSet(char[] elements)
Constructs a new mutable set of elements from the given array.
|
CharSet |
CharSetFactory.newMutableSet(char[] elements,
int expectedSize)
Constructs a new mutable set of elements from the given array.
|
CharSet |
CharSetFactory.newMutableSet(Character[] elements)
Constructs a new mutable set of elements from the given array.
|
CharSet |
CharSetFactory.newMutableSet(Character[] elements,
int expectedSize)
Constructs a new mutable set of elements from the given array.
|
CharSet |
CharSetFactory.newMutableSet(Consumer<CharConsumer> elementsSupplier)
Constructs a new mutable set of elements consumed by the callback within the given closure.
|
CharSet |
CharSetFactory.newMutableSet(Consumer<CharConsumer> elementsSupplier,
int expectedSize)
Constructs a new mutable set of elements consumed by the callback within the given closure.
|
CharSet |
CharSetFactory.newMutableSet(int expectedSize)
Constructs a new empty mutable set of the given expected size.
|
CharSet |
CharSetFactory.newMutableSet(Iterable<Character> elements)
Constructs a new mutable set containing the elements in the specified iterable.
|
CharSet |
CharSetFactory.newMutableSet(Iterable<Character> elements,
int expectedSize)
Constructs a new mutable set containing the elements in the specified iterable.
|
CharSet |
CharSetFactory.newMutableSet(Iterable<Character> elems1,
Iterable<Character> elems2)
Constructs a new mutable set which merge the elements of the specified iterables.
|
CharSet |
CharSetFactory.newMutableSet(Iterable<Character> elems1,
Iterable<Character> elems2,
int expectedSize)
Constructs a new mutable set which merge the elements of the specified iterables.
|
CharSet |
CharSetFactory.newMutableSet(Iterable<Character> elems1,
Iterable<Character> elems2,
Iterable<Character> elems3)
Constructs a new mutable set which merge the elements of the specified iterables.
|
CharSet |
CharSetFactory.newMutableSet(Iterable<Character> elems1,
Iterable<Character> elems2,
Iterable<Character> elems3,
int expectedSize)
Constructs a new mutable set which merge the elements of the specified iterables.
|
CharSet |
CharSetFactory.newMutableSet(Iterable<Character> elems1,
Iterable<Character> elems2,
Iterable<Character> elems3,
Iterable<Character> elems4)
Constructs a new mutable set which merge the elements of the specified iterables.
|
CharSet |
CharSetFactory.newMutableSet(Iterable<Character> elems1,
Iterable<Character> elems2,
Iterable<Character> elems3,
Iterable<Character> elems4,
int expectedSize)
Constructs a new mutable set which merge the elements of the specified iterables.
|
CharSet |
CharSetFactory.newMutableSet(Iterable<Character> elems1,
Iterable<Character> elems2,
Iterable<Character> elems3,
Iterable<Character> elems4,
Iterable<Character> elems5)
Constructs a new mutable set which merge the elements of the specified iterables.
|
CharSet |
CharSetFactory.newMutableSet(Iterable<Character> elems1,
Iterable<Character> elems2,
Iterable<Character> elems3,
Iterable<Character> elems4,
Iterable<Character> elems5,
int expectedSize)
Constructs a new mutable set which merge the elements of the specified iterables.
|
CharSet |
CharSetFactory.newMutableSet(Iterator<Character> elements)
Constructs a new mutable set containing the elements traversed by the specified iterator.
|
CharSet |
CharSetFactory.newMutableSet(Iterator<Character> elements,
int expectedSize)
Constructs a new mutable set containing the elements traversed by the specified iterator.
|
CharSet |
CharSetFactory.newMutableSetOf(char e1)
Constructs a new mutable singleton set of the given element.
|
CharSet |
CharSetFactory.newMutableSetOf(char e1,
char e2)
Constructs a new mutable set of the two specified elements.
|
CharSet |
CharSetFactory.newMutableSetOf(char e1,
char e2,
char e3)
Constructs a new mutable set of the three specified elements.
|
CharSet |
CharSetFactory.newMutableSetOf(char e1,
char e2,
char e3,
char e4)
Constructs a new mutable set of the four specified elements.
|
CharSet |
CharSetFactory.newMutableSetOf(char e1,
char e2,
char e3,
char e4,
char e5,
char... restElements)
Constructs a new mutable set of the specified elements.
|
CharSet |
CharSetFactory.newUpdatableSet()
Constructs a new empty updatable set of the default
expected size.
|
CharSet |
CharSetFactory.newUpdatableSet(char[] elements)
Constructs a new updatable set of elements from the given array.
|
CharSet |
CharSetFactory.newUpdatableSet(char[] elements,
int expectedSize)
Constructs a new updatable set of elements from the given array.
|
CharSet |
CharSetFactory.newUpdatableSet(Character[] elements)
Constructs a new updatable set of elements from the given array.
|
CharSet |
CharSetFactory.newUpdatableSet(Character[] elements,
int expectedSize)
Constructs a new updatable set of elements from the given array.
|
CharSet |
CharSetFactory.newUpdatableSet(Consumer<CharConsumer> elementsSupplier)
Constructs a new updatable set of elements consumed by the callback within the given closure.
|
CharSet |
CharSetFactory.newUpdatableSet(Consumer<CharConsumer> elementsSupplier,
int expectedSize)
Constructs a new updatable set of elements consumed by the callback within the given closure.
|
CharSet |
CharSetFactory.newUpdatableSet(int expectedSize)
Constructs a new empty updatable set of the given expected size.
|
CharSet |
CharSetFactory.newUpdatableSet(Iterable<Character> elements)
Constructs a new updatable set containing the elements in the specified iterable.
|
CharSet |
CharSetFactory.newUpdatableSet(Iterable<Character> elements,
int expectedSize)
Constructs a new updatable set containing the elements in the specified iterable.
|
CharSet |
CharSetFactory.newUpdatableSet(Iterable<Character> elems1,
Iterable<Character> elems2)
Constructs a new updatable set which merge the elements of the specified iterables.
|
CharSet |
CharSetFactory.newUpdatableSet(Iterable<Character> elems1,
Iterable<Character> elems2,
int expectedSize)
Constructs a new updatable set which merge the elements of the specified iterables.
|
CharSet |
CharSetFactory.newUpdatableSet(Iterable<Character> elems1,
Iterable<Character> elems2,
Iterable<Character> elems3)
Constructs a new updatable set which merge the elements of the specified iterables.
|
CharSet |
CharSetFactory.newUpdatableSet(Iterable<Character> elems1,
Iterable<Character> elems2,
Iterable<Character> elems3,
int expectedSize)
Constructs a new updatable set which merge the elements of the specified iterables.
|
CharSet |
CharSetFactory.newUpdatableSet(Iterable<Character> elems1,
Iterable<Character> elems2,
Iterable<Character> elems3,
Iterable<Character> elems4)
Constructs a new updatable set which merge the elements of the specified iterables.
|
CharSet |
CharSetFactory.newUpdatableSet(Iterable<Character> elems1,
Iterable<Character> elems2,
Iterable<Character> elems3,
Iterable<Character> elems4,
int expectedSize)
Constructs a new updatable set which merge the elements of the specified iterables.
|
CharSet |
CharSetFactory.newUpdatableSet(Iterable<Character> elems1,
Iterable<Character> elems2,
Iterable<Character> elems3,
Iterable<Character> elems4,
Iterable<Character> elems5)
Constructs a new updatable set which merge the elements of the specified iterables.
|
CharSet |
CharSetFactory.newUpdatableSet(Iterable<Character> elems1,
Iterable<Character> elems2,
Iterable<Character> elems3,
Iterable<Character> elems4,
Iterable<Character> elems5,
int expectedSize)
Constructs a new updatable set which merge the elements of the specified iterables.
|
CharSet |
CharSetFactory.newUpdatableSet(Iterator<Character> elements)
Constructs a new updatable set containing the elements traversed by the specified iterator.
|
CharSet |
CharSetFactory.newUpdatableSet(Iterator<Character> elements,
int expectedSize)
Constructs a new updatable set containing the elements traversed by the specified iterator.
|
CharSet |
CharSetFactory.newUpdatableSetOf(char e1)
Constructs a new updatable singleton set of the given element.
|
CharSet |
CharSetFactory.newUpdatableSetOf(char e1,
char e2)
Constructs a new updatable set of the two specified elements.
|
CharSet |
CharSetFactory.newUpdatableSetOf(char e1,
char e2,
char e3)
Constructs a new updatable set of the three specified elements.
|
CharSet |
CharSetFactory.newUpdatableSetOf(char e1,
char e2,
char e3,
char e4)
Constructs a new updatable set of the four specified elements.
|
CharSet |
CharSetFactory.newUpdatableSetOf(char e1,
char e2,
char e3,
char e4,
char e5,
char... restElements)
Constructs a new updatable set of the specified elements.
|
Modifier and Type | Interface and Description |
---|---|
interface |
HashCharSet
An interface for
CharSet s, based on hash tables. |