|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use IntSet | |
---|---|
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. |
Uses of IntSet in com.koloboke.collect.map |
---|
Methods in com.koloboke.collect.map that return IntSet | |
---|---|
IntSet |
IntByteMap.keySet()
|
IntSet |
IntCharMap.keySet()
|
IntSet |
IntDoubleMap.keySet()
|
IntSet |
IntFloatMap.keySet()
|
IntSet |
IntIntMap.keySet()
|
IntSet |
IntLongMap.keySet()
|
IntSet |
IntObjMap.keySet()
|
IntSet |
IntShortMap.keySet()
|
Uses of IntSet in com.koloboke.collect.set |
---|
Methods in com.koloboke.collect.set that return IntSet | |
---|---|
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.newImmutableSet(int[] elements)
Constructs a new immutable set of elements from the given array. |
IntSet |
IntSetFactory.newImmutableSet(int[] elements,
int expectedSize)
Constructs a new immutable set of elements from the given array. |
IntSet |
IntSetFactory.newImmutableSet(Integer[] elements)
Constructs a new immutable set of elements from the given array. |
IntSet |
IntSetFactory.newImmutableSet(Integer[] elements,
int expectedSize)
Constructs a new immutable set of elements from the given array. |
IntSet |
IntSetFactory.newImmutableSet(Iterable<Integer> elements)
Constructs a new immutable set containing the elements in the specified iterable. |
IntSet |
IntSetFactory.newImmutableSet(Iterable<Integer> elements,
int expectedSize)
Constructs a new immutable set containing the elements in the specified iterable. |
IntSet |
IntSetFactory.newImmutableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2)
Constructs a new immutable set which merge the elements of the specified iterables. |
IntSet |
IntSetFactory.newImmutableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
int expectedSize)
Constructs a new immutable set which merge the elements of the specified iterables. |
IntSet |
IntSetFactory.newImmutableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3)
Constructs a new immutable set which merge the elements of the specified iterables. |
IntSet |
IntSetFactory.newImmutableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3,
int expectedSize)
Constructs a new immutable set which merge the elements of the specified iterables. |
IntSet |
IntSetFactory.newImmutableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3,
Iterable<Integer> elems4)
Constructs a new immutable set which merge the elements of the specified iterables. |
IntSet |
IntSetFactory.newImmutableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3,
Iterable<Integer> elems4,
int expectedSize)
Constructs a new immutable set which merge the elements of the specified iterables. |
IntSet |
IntSetFactory.newImmutableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3,
Iterable<Integer> elems4,
Iterable<Integer> elems5)
Constructs a new immutable set which merge the elements of the specified iterables. |
IntSet |
IntSetFactory.newImmutableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3,
Iterable<Integer> elems4,
Iterable<Integer> elems5,
int expectedSize)
Constructs a new immutable set which merge the elements of the specified iterables. |
IntSet |
IntSetFactory.newImmutableSet(Iterator<Integer> elements)
Constructs a new immutable set containing the elements traversed by the specified iterator. |
IntSet |
IntSetFactory.newImmutableSet(Iterator<Integer> elements,
int expectedSize)
Constructs a new immutable set containing the elements traversed by the specified iterator. |
IntSet |
IntSetFactory.newImmutableSetOf(int e1)
Constructs a new immutable singleton set of the given element. |
IntSet |
IntSetFactory.newImmutableSetOf(int e1,
int e2)
Constructs a new immutable set of the two specified elements. |
IntSet |
IntSetFactory.newImmutableSetOf(int e1,
int e2,
int e3)
Constructs a new immutable set of the three specified elements. |
IntSet |
IntSetFactory.newImmutableSetOf(int e1,
int e2,
int e3,
int e4)
Constructs a new immutable set of the four specified elements. |
IntSet |
IntSetFactory.newImmutableSetOf(int e1,
int e2,
int e3,
int e4,
int e5,
int... restElements)
Constructs a new immutable set of the specified elements. |
IntSet |
IntSetFactory.newMutableSet()
Constructs a new empty mutable set of the default expected size. |
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.newMutableSet(int expectedSize)
Constructs a new empty mutable set of the given expected size. |
IntSet |
IntSetFactory.newMutableSet(int[] elements)
Constructs a new mutable set of elements from the given array. |
IntSet |
IntSetFactory.newMutableSet(int[] elements,
int expectedSize)
Constructs a new mutable set of elements from the given array. |
IntSet |
IntSetFactory.newMutableSet(Integer[] elements)
Constructs a new mutable set of elements from the given array. |
IntSet |
IntSetFactory.newMutableSet(Integer[] elements,
int expectedSize)
Constructs a new mutable set of elements from the given array. |
IntSet |
IntSetFactory.newMutableSet(Iterable<Integer> elements)
Constructs a new mutable set containing the elements in the specified iterable. |
IntSet |
IntSetFactory.newMutableSet(Iterable<Integer> elements,
int expectedSize)
Constructs a new mutable set containing the elements in the specified iterable. |
IntSet |
IntSetFactory.newMutableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2)
Constructs a new mutable set which merge the elements of the specified iterables. |
IntSet |
IntSetFactory.newMutableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
int expectedSize)
Constructs a new mutable set which merge the elements of the specified iterables. |
IntSet |
IntSetFactory.newMutableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3)
Constructs a new mutable set which merge the elements of the specified iterables. |
IntSet |
IntSetFactory.newMutableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3,
int expectedSize)
Constructs a new mutable set which merge the elements of the specified iterables. |
IntSet |
IntSetFactory.newMutableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3,
Iterable<Integer> elems4)
Constructs a new mutable set which merge the elements of the specified iterables. |
IntSet |
IntSetFactory.newMutableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3,
Iterable<Integer> elems4,
int expectedSize)
Constructs a new mutable set which merge the elements of the specified iterables. |
IntSet |
IntSetFactory.newMutableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3,
Iterable<Integer> elems4,
Iterable<Integer> elems5)
Constructs a new mutable set which merge the elements of the specified iterables. |
IntSet |
IntSetFactory.newMutableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3,
Iterable<Integer> elems4,
Iterable<Integer> elems5,
int expectedSize)
Constructs a new mutable set which merge the elements of the specified iterables. |
IntSet |
IntSetFactory.newMutableSet(Iterator<Integer> elements)
Constructs a new mutable set containing the elements traversed by the specified iterator. |
IntSet |
IntSetFactory.newMutableSet(Iterator<Integer> elements,
int expectedSize)
Constructs a new mutable set containing the elements traversed by the specified iterator. |
IntSet |
IntSetFactory.newMutableSetOf(int e1)
Constructs a new mutable singleton set of the given element. |
IntSet |
IntSetFactory.newMutableSetOf(int e1,
int e2)
Constructs a new mutable set of the two specified elements. |
IntSet |
IntSetFactory.newMutableSetOf(int e1,
int e2,
int e3)
Constructs a new mutable set of the three specified elements. |
IntSet |
IntSetFactory.newMutableSetOf(int e1,
int e2,
int e3,
int e4)
Constructs a new mutable set of the four specified elements. |
IntSet |
IntSetFactory.newMutableSetOf(int e1,
int e2,
int e3,
int e4,
int e5,
int... restElements)
Constructs a new mutable set of the specified elements. |
IntSet |
IntSetFactory.newUpdatableSet()
Constructs a new empty updatable set of the default expected size. |
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. |
IntSet |
IntSetFactory.newUpdatableSet(int expectedSize)
Constructs a new empty updatable set of the given expected size. |
IntSet |
IntSetFactory.newUpdatableSet(int[] elements)
Constructs a new updatable set of elements from the given array. |
IntSet |
IntSetFactory.newUpdatableSet(int[] elements,
int expectedSize)
Constructs a new updatable set of elements from the given array. |
IntSet |
IntSetFactory.newUpdatableSet(Integer[] elements)
Constructs a new updatable set of elements from the given array. |
IntSet |
IntSetFactory.newUpdatableSet(Integer[] elements,
int expectedSize)
Constructs a new updatable set of elements from the given array. |
IntSet |
IntSetFactory.newUpdatableSet(Iterable<Integer> elements)
Constructs a new updatable set containing the elements in the specified iterable. |
IntSet |
IntSetFactory.newUpdatableSet(Iterable<Integer> elements,
int expectedSize)
Constructs a new updatable set containing the elements in the specified iterable. |
IntSet |
IntSetFactory.newUpdatableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2)
Constructs a new updatable set which merge the elements of the specified iterables. |
IntSet |
IntSetFactory.newUpdatableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
int expectedSize)
Constructs a new updatable set which merge the elements of the specified iterables. |
IntSet |
IntSetFactory.newUpdatableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3)
Constructs a new updatable set which merge the elements of the specified iterables. |
IntSet |
IntSetFactory.newUpdatableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3,
int expectedSize)
Constructs a new updatable set which merge the elements of the specified iterables. |
IntSet |
IntSetFactory.newUpdatableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3,
Iterable<Integer> elems4)
Constructs a new updatable set which merge the elements of the specified iterables. |
IntSet |
IntSetFactory.newUpdatableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3,
Iterable<Integer> elems4,
int expectedSize)
Constructs a new updatable set which merge the elements of the specified iterables. |
IntSet |
IntSetFactory.newUpdatableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3,
Iterable<Integer> elems4,
Iterable<Integer> elems5)
Constructs a new updatable set which merge the elements of the specified iterables. |
IntSet |
IntSetFactory.newUpdatableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3,
Iterable<Integer> elems4,
Iterable<Integer> elems5,
int expectedSize)
Constructs a new updatable set which merge the elements of the specified iterables. |
IntSet |
IntSetFactory.newUpdatableSet(Iterator<Integer> elements)
Constructs a new updatable set containing the elements traversed by the specified iterator. |
IntSet |
IntSetFactory.newUpdatableSet(Iterator<Integer> elements,
int expectedSize)
Constructs a new updatable set containing the elements traversed by the specified iterator. |
IntSet |
IntSetFactory.newUpdatableSetOf(int e1)
Constructs a new updatable singleton set of the given element. |
IntSet |
IntSetFactory.newUpdatableSetOf(int e1,
int e2)
Constructs a new updatable set of the two specified elements. |
IntSet |
IntSetFactory.newUpdatableSetOf(int e1,
int e2,
int e3)
Constructs a new updatable set of the three specified elements. |
IntSet |
IntSetFactory.newUpdatableSetOf(int e1,
int e2,
int e3,
int e4)
Constructs a new updatable set of the four specified elements. |
IntSet |
IntSetFactory.newUpdatableSetOf(int e1,
int e2,
int e3,
int e4,
int e5,
int... restElements)
Constructs a new updatable set of the specified elements. |
Uses of IntSet in com.koloboke.collect.set.hash |
---|
Subinterfaces of IntSet in com.koloboke.collect.set.hash | |
---|---|
interface |
HashIntSet
An interface for IntSet s, based on hash tables. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |