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

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

Methods in com.koloboke.collect.map that return ByteSet
 ByteSet ByteByteMap.keySet()
           
 ByteSet ByteCharMap.keySet()
           
 ByteSet ByteDoubleMap.keySet()
           
 ByteSet ByteFloatMap.keySet()
           
 ByteSet ByteIntMap.keySet()
           
 ByteSet ByteLongMap.keySet()
           
 ByteSet ByteObjMap.keySet()
           
 ByteSet ByteShortMap.keySet()
           
 

Uses of ByteSet in com.koloboke.collect.set
 

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

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

Subinterfaces of ByteSet in com.koloboke.collect.set.hash
 interface HashByteSet
          An interface for ByteSets, based on hash tables.