Uses of Interface
com.koloboke.function.ShortConsumer

Packages that use ShortConsumer
com.koloboke.collect The root package of the collection library. 
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 ShortConsumer in com.koloboke.collect
 

Methods in com.koloboke.collect with parameters of type ShortConsumer
 void ShortCollection.forEach(ShortConsumer action)
          Performs the given action for each element of this collection until all elements have been processed or the action throws an exception.
 void ShortCursor.forEachForward(ShortConsumer action)
          Performs the given action for each element of the iteration after the cursor in forward direction until all elements have been processed or the action throws an exception.
 void ShortIterator.forEachRemaining(ShortConsumer action)
          Performs the given action for each remaining element until all elements have been processed or the action throws an exception.
 

Uses of ShortConsumer in com.koloboke.collect.set
 

Method parameters in com.koloboke.collect.set with type arguments of type ShortConsumer
 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.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.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.
 

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

Method parameters in com.koloboke.collect.set.hash with type arguments of type ShortConsumer
 HashShortSet HashShortSetFactory.newImmutableSet(Consumer<ShortConsumer> elementsSupplier)
           
static HashShortSet HashShortSets.newImmutableSet(Consumer<ShortConsumer> elementsSupplier)
          Constructs a new immutable set of elements consumed by the callback within the given closure.
 HashShortSet HashShortSetFactory.newImmutableSet(Consumer<ShortConsumer> elementsSupplier, int expectedSize)
           
static HashShortSet HashShortSets.newImmutableSet(Consumer<ShortConsumer> elementsSupplier, int expectedSize)
          Constructs a new immutable set of elements consumed by the callback within the given closure.
 HashShortSet HashShortSetFactory.newMutableSet(Consumer<ShortConsumer> elementsSupplier)
           
static HashShortSet HashShortSets.newMutableSet(Consumer<ShortConsumer> elementsSupplier)
          Constructs a new mutable set of elements consumed by the callback within the given closure.
 HashShortSet HashShortSetFactory.newMutableSet(Consumer<ShortConsumer> elementsSupplier, int expectedSize)
           
static HashShortSet HashShortSets.newMutableSet(Consumer<ShortConsumer> elementsSupplier, int expectedSize)
          Constructs a new mutable set of elements consumed by the callback within the given closure.
 HashShortSet HashShortSetFactory.newUpdatableSet(Consumer<ShortConsumer> elementsSupplier)
           
static HashShortSet HashShortSets.newUpdatableSet(Consumer<ShortConsumer> elementsSupplier)
          Constructs a new updatable set of elements consumed by the callback within the given closure.
 HashShortSet HashShortSetFactory.newUpdatableSet(Consumer<ShortConsumer> elementsSupplier, int expectedSize)
           
static HashShortSet HashShortSets.newUpdatableSet(Consumer<ShortConsumer> elementsSupplier, int expectedSize)
          Constructs a new updatable set of elements consumed by the callback within the given closure.