Uses of Interface
com.koloboke.collect.set.LongSet

Packages that use LongSet
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 LongSet in com.koloboke.collect.map
 

Methods in com.koloboke.collect.map that return LongSet
 LongSet LongByteMap.keySet()
           
 LongSet LongCharMap.keySet()
           
 LongSet LongDoubleMap.keySet()
           
 LongSet LongFloatMap.keySet()
           
 LongSet LongIntMap.keySet()
           
 LongSet LongLongMap.keySet()
           
 LongSet LongObjMap.keySet()
           
 LongSet LongShortMap.keySet()
           
 

Uses of LongSet in com.koloboke.collect.set
 

Methods in com.koloboke.collect.set that return LongSet
 LongSet LongSetFactory.newImmutableSet(Consumer<LongConsumer> elementsSupplier)
          Constructs a new immutable set of elements consumed by the callback within the given closure.
 LongSet LongSetFactory.newImmutableSet(Consumer<LongConsumer> elementsSupplier, int expectedSize)
          Constructs a new immutable set of elements consumed by the callback within the given closure.
 LongSet LongSetFactory.newImmutableSet(Iterable<Long> elements)
          Constructs a new immutable set containing the elements in the specified iterable.
 LongSet LongSetFactory.newImmutableSet(Iterable<Long> elements, int expectedSize)
          Constructs a new immutable set containing the elements in the specified iterable.
 LongSet LongSetFactory.newImmutableSet(Iterable<Long> elems1, Iterable<Long> elems2)
          Constructs a new immutable set which merge the elements of the specified iterables.
 LongSet LongSetFactory.newImmutableSet(Iterable<Long> elems1, Iterable<Long> elems2, int expectedSize)
          Constructs a new immutable set which merge the elements of the specified iterables.
 LongSet LongSetFactory.newImmutableSet(Iterable<Long> elems1, Iterable<Long> elems2, Iterable<Long> elems3)
          Constructs a new immutable set which merge the elements of the specified iterables.
 LongSet LongSetFactory.newImmutableSet(Iterable<Long> elems1, Iterable<Long> elems2, Iterable<Long> elems3, int expectedSize)
          Constructs a new immutable set which merge the elements of the specified iterables.
 LongSet LongSetFactory.newImmutableSet(Iterable<Long> elems1, Iterable<Long> elems2, Iterable<Long> elems3, Iterable<Long> elems4)
          Constructs a new immutable set which merge the elements of the specified iterables.
 LongSet LongSetFactory.newImmutableSet(Iterable<Long> elems1, Iterable<Long> elems2, Iterable<Long> elems3, Iterable<Long> elems4, int expectedSize)
          Constructs a new immutable set which merge the elements of the specified iterables.
 LongSet LongSetFactory.newImmutableSet(Iterable<Long> elems1, Iterable<Long> elems2, Iterable<Long> elems3, Iterable<Long> elems4, Iterable<Long> elems5)
          Constructs a new immutable set which merge the elements of the specified iterables.
 LongSet LongSetFactory.newImmutableSet(Iterable<Long> elems1, Iterable<Long> elems2, Iterable<Long> elems3, Iterable<Long> elems4, Iterable<Long> elems5, int expectedSize)
          Constructs a new immutable set which merge the elements of the specified iterables.
 LongSet LongSetFactory.newImmutableSet(Iterator<Long> elements)
          Constructs a new immutable set containing the elements traversed by the specified iterator.
 LongSet LongSetFactory.newImmutableSet(Iterator<Long> elements, int expectedSize)
          Constructs a new immutable set containing the elements traversed by the specified iterator.
 LongSet LongSetFactory.newImmutableSet(long[] elements)
          Constructs a new immutable set of elements from the given array.
 LongSet LongSetFactory.newImmutableSet(Long[] elements)
          Constructs a new immutable set of elements from the given array.
 LongSet LongSetFactory.newImmutableSet(long[] elements, int expectedSize)
          Constructs a new immutable set of elements from the given array.
 LongSet LongSetFactory.newImmutableSet(Long[] elements, int expectedSize)
          Constructs a new immutable set of elements from the given array.
 LongSet LongSetFactory.newImmutableSetOf(long e1)
          Constructs a new immutable singleton set of the given element.
 LongSet LongSetFactory.newImmutableSetOf(long e1, long e2)
          Constructs a new immutable set of the two specified elements.
 LongSet LongSetFactory.newImmutableSetOf(long e1, long e2, long e3)
          Constructs a new immutable set of the three specified elements.
 LongSet LongSetFactory.newImmutableSetOf(long e1, long e2, long e3, long e4)
          Constructs a new immutable set of the four specified elements.
 LongSet LongSetFactory.newImmutableSetOf(long e1, long e2, long e3, long e4, long e5, long... restElements)
          Constructs a new immutable set of the specified elements.
 LongSet LongSetFactory.newMutableSet()
          Constructs a new empty mutable set of the default expected size.
 LongSet LongSetFactory.newMutableSet(Consumer<LongConsumer> elementsSupplier)
          Constructs a new mutable set of elements consumed by the callback within the given closure.
 LongSet LongSetFactory.newMutableSet(Consumer<LongConsumer> elementsSupplier, int expectedSize)
          Constructs a new mutable set of elements consumed by the callback within the given closure.
 LongSet LongSetFactory.newMutableSet(int expectedSize)
          Constructs a new empty mutable set of the given expected size.
 LongSet LongSetFactory.newMutableSet(Iterable<Long> elements)
          Constructs a new mutable set containing the elements in the specified iterable.
 LongSet LongSetFactory.newMutableSet(Iterable<Long> elements, int expectedSize)
          Constructs a new mutable set containing the elements in the specified iterable.
 LongSet LongSetFactory.newMutableSet(Iterable<Long> elems1, Iterable<Long> elems2)
          Constructs a new mutable set which merge the elements of the specified iterables.
 LongSet LongSetFactory.newMutableSet(Iterable<Long> elems1, Iterable<Long> elems2, int expectedSize)
          Constructs a new mutable set which merge the elements of the specified iterables.
 LongSet LongSetFactory.newMutableSet(Iterable<Long> elems1, Iterable<Long> elems2, Iterable<Long> elems3)
          Constructs a new mutable set which merge the elements of the specified iterables.
 LongSet LongSetFactory.newMutableSet(Iterable<Long> elems1, Iterable<Long> elems2, Iterable<Long> elems3, int expectedSize)
          Constructs a new mutable set which merge the elements of the specified iterables.
 LongSet LongSetFactory.newMutableSet(Iterable<Long> elems1, Iterable<Long> elems2, Iterable<Long> elems3, Iterable<Long> elems4)
          Constructs a new mutable set which merge the elements of the specified iterables.
 LongSet LongSetFactory.newMutableSet(Iterable<Long> elems1, Iterable<Long> elems2, Iterable<Long> elems3, Iterable<Long> elems4, int expectedSize)
          Constructs a new mutable set which merge the elements of the specified iterables.
 LongSet LongSetFactory.newMutableSet(Iterable<Long> elems1, Iterable<Long> elems2, Iterable<Long> elems3, Iterable<Long> elems4, Iterable<Long> elems5)
          Constructs a new mutable set which merge the elements of the specified iterables.
 LongSet LongSetFactory.newMutableSet(Iterable<Long> elems1, Iterable<Long> elems2, Iterable<Long> elems3, Iterable<Long> elems4, Iterable<Long> elems5, int expectedSize)
          Constructs a new mutable set which merge the elements of the specified iterables.
 LongSet LongSetFactory.newMutableSet(Iterator<Long> elements)
          Constructs a new mutable set containing the elements traversed by the specified iterator.
 LongSet LongSetFactory.newMutableSet(Iterator<Long> elements, int expectedSize)
          Constructs a new mutable set containing the elements traversed by the specified iterator.
 LongSet LongSetFactory.newMutableSet(long[] elements)
          Constructs a new mutable set of elements from the given array.
 LongSet LongSetFactory.newMutableSet(Long[] elements)
          Constructs a new mutable set of elements from the given array.
 LongSet LongSetFactory.newMutableSet(long[] elements, int expectedSize)
          Constructs a new mutable set of elements from the given array.
 LongSet LongSetFactory.newMutableSet(Long[] elements, int expectedSize)
          Constructs a new mutable set of elements from the given array.
 LongSet LongSetFactory.newMutableSetOf(long e1)
          Constructs a new mutable singleton set of the given element.
 LongSet LongSetFactory.newMutableSetOf(long e1, long e2)
          Constructs a new mutable set of the two specified elements.
 LongSet LongSetFactory.newMutableSetOf(long e1, long e2, long e3)
          Constructs a new mutable set of the three specified elements.
 LongSet LongSetFactory.newMutableSetOf(long e1, long e2, long e3, long e4)
          Constructs a new mutable set of the four specified elements.
 LongSet LongSetFactory.newMutableSetOf(long e1, long e2, long e3, long e4, long e5, long... restElements)
          Constructs a new mutable set of the specified elements.
 LongSet LongSetFactory.newUpdatableSet()
          Constructs a new empty updatable set of the default expected size.
 LongSet LongSetFactory.newUpdatableSet(Consumer<LongConsumer> elementsSupplier)
          Constructs a new updatable set of elements consumed by the callback within the given closure.
 LongSet LongSetFactory.newUpdatableSet(Consumer<LongConsumer> elementsSupplier, int expectedSize)
          Constructs a new updatable set of elements consumed by the callback within the given closure.
 LongSet LongSetFactory.newUpdatableSet(int expectedSize)
          Constructs a new empty updatable set of the given expected size.
 LongSet LongSetFactory.newUpdatableSet(Iterable<Long> elements)
          Constructs a new updatable set containing the elements in the specified iterable.
 LongSet LongSetFactory.newUpdatableSet(Iterable<Long> elements, int expectedSize)
          Constructs a new updatable set containing the elements in the specified iterable.
 LongSet LongSetFactory.newUpdatableSet(Iterable<Long> elems1, Iterable<Long> elems2)
          Constructs a new updatable set which merge the elements of the specified iterables.
 LongSet LongSetFactory.newUpdatableSet(Iterable<Long> elems1, Iterable<Long> elems2, int expectedSize)
          Constructs a new updatable set which merge the elements of the specified iterables.
 LongSet LongSetFactory.newUpdatableSet(Iterable<Long> elems1, Iterable<Long> elems2, Iterable<Long> elems3)
          Constructs a new updatable set which merge the elements of the specified iterables.
 LongSet LongSetFactory.newUpdatableSet(Iterable<Long> elems1, Iterable<Long> elems2, Iterable<Long> elems3, int expectedSize)
          Constructs a new updatable set which merge the elements of the specified iterables.
 LongSet LongSetFactory.newUpdatableSet(Iterable<Long> elems1, Iterable<Long> elems2, Iterable<Long> elems3, Iterable<Long> elems4)
          Constructs a new updatable set which merge the elements of the specified iterables.
 LongSet LongSetFactory.newUpdatableSet(Iterable<Long> elems1, Iterable<Long> elems2, Iterable<Long> elems3, Iterable<Long> elems4, int expectedSize)
          Constructs a new updatable set which merge the elements of the specified iterables.
 LongSet LongSetFactory.newUpdatableSet(Iterable<Long> elems1, Iterable<Long> elems2, Iterable<Long> elems3, Iterable<Long> elems4, Iterable<Long> elems5)
          Constructs a new updatable set which merge the elements of the specified iterables.
 LongSet LongSetFactory.newUpdatableSet(Iterable<Long> elems1, Iterable<Long> elems2, Iterable<Long> elems3, Iterable<Long> elems4, Iterable<Long> elems5, int expectedSize)
          Constructs a new updatable set which merge the elements of the specified iterables.
 LongSet LongSetFactory.newUpdatableSet(Iterator<Long> elements)
          Constructs a new updatable set containing the elements traversed by the specified iterator.
 LongSet LongSetFactory.newUpdatableSet(Iterator<Long> elements, int expectedSize)
          Constructs a new updatable set containing the elements traversed by the specified iterator.
 LongSet LongSetFactory.newUpdatableSet(long[] elements)
          Constructs a new updatable set of elements from the given array.
 LongSet LongSetFactory.newUpdatableSet(Long[] elements)
          Constructs a new updatable set of elements from the given array.
 LongSet LongSetFactory.newUpdatableSet(long[] elements, int expectedSize)
          Constructs a new updatable set of elements from the given array.
 LongSet LongSetFactory.newUpdatableSet(Long[] elements, int expectedSize)
          Constructs a new updatable set of elements from the given array.
 LongSet LongSetFactory.newUpdatableSetOf(long e1)
          Constructs a new updatable singleton set of the given element.
 LongSet LongSetFactory.newUpdatableSetOf(long e1, long e2)
          Constructs a new updatable set of the two specified elements.
 LongSet LongSetFactory.newUpdatableSetOf(long e1, long e2, long e3)
          Constructs a new updatable set of the three specified elements.
 LongSet LongSetFactory.newUpdatableSetOf(long e1, long e2, long e3, long e4)
          Constructs a new updatable set of the four specified elements.
 LongSet LongSetFactory.newUpdatableSetOf(long e1, long e2, long e3, long e4, long e5, long... restElements)
          Constructs a new updatable set of the specified elements.
 

Uses of LongSet in com.koloboke.collect.set.hash
 

Subinterfaces of LongSet in com.koloboke.collect.set.hash
 interface HashLongSet
          An interface for LongSets, based on hash tables.