Uses of Interface
net.openhft.koloboke.function.IntConsumer

Packages that use IntConsumer
net.openhft.koloboke.collect The root package of the collection library. 
net.openhft.koloboke.collect.set Contains interfaces of Set specializations and their factories. 
net.openhft.koloboke.collect.set.hash Contains interfaces of Set specializations, based on hash tables, their factories and static factory methods. 
 

Uses of IntConsumer in net.openhft.koloboke.collect
 

Methods in net.openhft.koloboke.collect with parameters of type IntConsumer
 void IntCollection.forEach(IntConsumer action)
          Performs the given action for each element of this collection until all elements have been processed or the action throws an exception.
 void IntCursor.forEachForward(IntConsumer 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 IntIterator.forEachRemaining(IntConsumer action)
          Performs the given action for each remaining element until all elements have been processed or the action throws an exception.
 

Uses of IntConsumer in net.openhft.koloboke.collect.set
 

Method parameters in net.openhft.koloboke.collect.set with type arguments of type IntConsumer
 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.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.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.
 

Uses of IntConsumer in net.openhft.koloboke.collect.set.hash
 

Method parameters in net.openhft.koloboke.collect.set.hash with type arguments of type IntConsumer
 HashIntSet HashIntSetFactory.newImmutableSet(Consumer<IntConsumer> elementsSupplier)
           
static HashIntSet HashIntSets.newImmutableSet(Consumer<IntConsumer> elementsSupplier)
          Constructs a new immutable set of elements consumed by the callback within the given closure.
 HashIntSet HashIntSetFactory.newImmutableSet(Consumer<IntConsumer> elementsSupplier, int expectedSize)
           
static HashIntSet HashIntSets.newImmutableSet(Consumer<IntConsumer> elementsSupplier, int expectedSize)
          Constructs a new immutable set of elements consumed by the callback within the given closure.
 HashIntSet HashIntSetFactory.newMutableSet(Consumer<IntConsumer> elementsSupplier)
           
static HashIntSet HashIntSets.newMutableSet(Consumer<IntConsumer> elementsSupplier)
          Constructs a new mutable set of elements consumed by the callback within the given closure.
 HashIntSet HashIntSetFactory.newMutableSet(Consumer<IntConsumer> elementsSupplier, int expectedSize)
           
static HashIntSet HashIntSets.newMutableSet(Consumer<IntConsumer> elementsSupplier, int expectedSize)
          Constructs a new mutable set of elements consumed by the callback within the given closure.
 HashIntSet HashIntSetFactory.newUpdatableSet(Consumer<IntConsumer> elementsSupplier)
           
static HashIntSet HashIntSets.newUpdatableSet(Consumer<IntConsumer> elementsSupplier)
          Constructs a new updatable set of elements consumed by the callback within the given closure.
 HashIntSet HashIntSetFactory.newUpdatableSet(Consumer<IntConsumer> elementsSupplier, int expectedSize)
           
static HashIntSet HashIntSets.newUpdatableSet(Consumer<IntConsumer> elementsSupplier, int expectedSize)
          Constructs a new updatable set of elements consumed by the callback within the given closure.