Uses of Interface
org.ojalgo.type.function.TwoStepMapper.Combineable
Packages that use TwoStepMapper.Combineable
Package
Description
-
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 mostparallelismtasks to work through theworkitems, 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 themethod of a globalinvalid reference
TwoStepMapper.Combineable#merge(Object)TwoStepMapper.Combineableinstance as theconsumer. -
Uses of TwoStepMapper.Combineable in org.ojalgo.random
Classes in org.ojalgo.random that implement TwoStepMapper.CombineableModifier and TypeClassDescriptionstatic final classSampleSet.CombineableSet<N extends Comparable<N>> -
Uses of TwoStepMapper.Combineable in org.ojalgo.type.function
Classes in org.ojalgo.type.function with type parameters of type TwoStepMapper.CombineableModifier and TypeInterfaceDescriptionstatic interfaceTwoStepMapper.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 classA frequency counter that optionally filters some elements when merging subresults.static final classWill 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 newCollectorthat can be used withStream.collect(Collector).