Uses of Interface
org.ojalgo.type.function.TwoStepMapper.Combineable
Packages that use TwoStepMapper.Combineable
-
Uses of TwoStepMapper.Combineable in org.ojalgo.concurrent
Methods in org.ojalgo.concurrent with type parameters of type TwoStepMapper.CombineableModifier and TypeMethodDescription<W,
R, A extends TwoStepMapper.Combineable<W, R, A>>
RProcessingService.reduceCombineable
(Collection<W> work, int parallelism, Supplier<A> reducer) Will create at mostparallelism
tasks to work through thework
items, processing them withreducer
.<W,
R, A extends TwoStepMapper.Combineable<W, R, A>>
RProcessingService.reduceCombineable
(Collection<W> work, IntSupplier parallelism, Supplier<A> reducer) <W,
R, A extends TwoStepMapper.Combineable<W, R, A>>
RProcessingService.reduceCombineable
(Collection<W> work, Supplier<A> reducer) Using parallelismParallelism.CORES
. -
Uses of TwoStepMapper.Combineable in org.ojalgo.data.batch
Methods in org.ojalgo.data.batch with type parameters of type TwoStepMapper.CombineableModifier and TypeMethodDescription<R,
A extends TwoStepMapper.Combineable<T, R, A>>
RBatchNode.reduceByCombining
(Supplier<A> aggregatorFactory) CallsBatchNode.processCombineable(Supplier, Consumer)
with theinvalid reference
TwoStepMapper.Combineable#merge(Object)
TwoStepMapper.Combineable
instance as theconsumer
. -
Uses of TwoStepMapper.Combineable in org.ojalgo.type.function
Classes in org.ojalgo.type.function with type parameters of type TwoStepMapper.CombineableModifier and TypeInterfaceDescriptionstatic interface
TwoStepMapper.Combineable<T,
R, A extends TwoStepMapper.Combineable<T, R, A>> Enables combining the state of multiple instances.Classes in org.ojalgo.type.function that implement TwoStepMapper.CombineableModifier and TypeClassDescriptionstatic final class
A frequency counter that optionally filters some elements when merging subresults.static final class
Will calculate the function value for each input item, and cache the result.Methods in org.ojalgo.type.function with type parameters of type TwoStepMapper.CombineableModifier and TypeMethodDescriptionstatic <T,
R, A extends TwoStepMapper.Combineable<T, R, A>>
ATwoStepMapper.Combineable.combine2
(A target, A other) static <T,
R, A extends TwoStepMapper.Combineable<T, R, A>>
Collector<T, A, R> TwoStepMapper.Combineable.newCollector
(Supplier<A> supplier) Create a newCollector
that can be used withStream.collect(Collector)
.