Uses of Interface
com.koloboke.function.DoubleDoubleConsumer

Packages that use DoubleDoubleConsumer
com.koloboke.collect.map Contains interfaces of Map specializations, their factories and cursors. 
com.koloboke.collect.map.hash Contains interfaces of Map specializations, based on hash tables, their factories and static factory methods. 
 

Uses of DoubleDoubleConsumer in com.koloboke.collect.map
 

Methods in com.koloboke.collect.map with parameters of type DoubleDoubleConsumer
 void DoubleDoubleMap.forEach(DoubleDoubleConsumer action)
          Performs the given action on each entry in this map until all entries have been processed or the action throws an Exception.
 void DoubleDoubleCursor.forEachForward(DoubleDoubleConsumer action)
          Performs the given action for each entry of the iteration after the cursor in forward direction until all entries have been processed or the action throws an exception.
 

Method parameters in com.koloboke.collect.map with type arguments of type DoubleDoubleConsumer
 DoubleDoubleMap DoubleDoubleMapFactory.newImmutableMap(Consumer<DoubleDoubleConsumer> entriesSupplier)
          Constructs a new immutable map filled with mappings consumed by the callback within the given closure.
 DoubleDoubleMap DoubleDoubleMapFactory.newImmutableMap(Consumer<DoubleDoubleConsumer> entriesSupplier, int expectedSize)
          Constructs a new immutable map filled with mappings consumed by the callback within the given closure.
 DoubleDoubleMap DoubleDoubleMapFactory.newMutableMap(Consumer<DoubleDoubleConsumer> entriesSupplier)
          Constructs a new mutable map filled with mappings consumed by the callback within the given closure.
 DoubleDoubleMap DoubleDoubleMapFactory.newMutableMap(Consumer<DoubleDoubleConsumer> entriesSupplier, int expectedSize)
          Constructs a new mutable map filled with mappings consumed by the callback within the given closure.
 DoubleDoubleMap DoubleDoubleMapFactory.newUpdatableMap(Consumer<DoubleDoubleConsumer> entriesSupplier)
          Constructs a new updatable map filled with mappings consumed by the callback within the given closure.
 DoubleDoubleMap DoubleDoubleMapFactory.newUpdatableMap(Consumer<DoubleDoubleConsumer> entriesSupplier, int expectedSize)
          Constructs a new updatable map filled with mappings consumed by the callback within the given closure.
 

Uses of DoubleDoubleConsumer in com.koloboke.collect.map.hash
 

Method parameters in com.koloboke.collect.map.hash with type arguments of type DoubleDoubleConsumer
 HashDoubleDoubleMap HashDoubleDoubleMapFactory.newImmutableMap(Consumer<DoubleDoubleConsumer> entriesSupplier)
           
static HashDoubleDoubleMap HashDoubleDoubleMaps.newImmutableMap(Consumer<DoubleDoubleConsumer> entriesSupplier)
          Constructs a new immutable map filled with mappings consumed by the callback within the given closure.
 HashDoubleDoubleMap HashDoubleDoubleMapFactory.newImmutableMap(Consumer<DoubleDoubleConsumer> entriesSupplier, int expectedSize)
           
static HashDoubleDoubleMap HashDoubleDoubleMaps.newImmutableMap(Consumer<DoubleDoubleConsumer> entriesSupplier, int expectedSize)
          Constructs a new immutable map filled with mappings consumed by the callback within the given closure.
 HashDoubleDoubleMap HashDoubleDoubleMapFactory.newMutableMap(Consumer<DoubleDoubleConsumer> entriesSupplier)
           
static HashDoubleDoubleMap HashDoubleDoubleMaps.newMutableMap(Consumer<DoubleDoubleConsumer> entriesSupplier)
          Constructs a new mutable map filled with mappings consumed by the callback within the given closure.
 HashDoubleDoubleMap HashDoubleDoubleMapFactory.newMutableMap(Consumer<DoubleDoubleConsumer> entriesSupplier, int expectedSize)
           
static HashDoubleDoubleMap HashDoubleDoubleMaps.newMutableMap(Consumer<DoubleDoubleConsumer> entriesSupplier, int expectedSize)
          Constructs a new mutable map filled with mappings consumed by the callback within the given closure.
 HashDoubleDoubleMap HashDoubleDoubleMapFactory.newUpdatableMap(Consumer<DoubleDoubleConsumer> entriesSupplier)
           
static HashDoubleDoubleMap HashDoubleDoubleMaps.newUpdatableMap(Consumer<DoubleDoubleConsumer> entriesSupplier)
          Constructs a new updatable map filled with mappings consumed by the callback within the given closure.
 HashDoubleDoubleMap HashDoubleDoubleMapFactory.newUpdatableMap(Consumer<DoubleDoubleConsumer> entriesSupplier, int expectedSize)
           
static HashDoubleDoubleMap HashDoubleDoubleMaps.newUpdatableMap(Consumer<DoubleDoubleConsumer> entriesSupplier, int expectedSize)
          Constructs a new updatable map filled with mappings consumed by the callback within the given closure.