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

Packages that use DoubleConsumer
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 DoubleConsumer in net.openhft.koloboke.collect
 

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

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

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

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

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