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

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

Methods in com.koloboke.collect.map that return ShortSet
 ShortSet ShortByteMap.keySet()
           
 ShortSet ShortCharMap.keySet()
           
 ShortSet ShortDoubleMap.keySet()
           
 ShortSet ShortFloatMap.keySet()
           
 ShortSet ShortIntMap.keySet()
           
 ShortSet ShortLongMap.keySet()
           
 ShortSet ShortObjMap.keySet()
           
 ShortSet ShortShortMap.keySet()
           
 

Uses of ShortSet in com.koloboke.collect.set
 

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

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

Subinterfaces of ShortSet in com.koloboke.collect.set.hash
 interface HashShortSet
          An interface for ShortSets, based on hash tables.