package org.eclipse.collections.impl.block.procedure;
import org.eclipse.collections.api.block.function.Function;
import org.eclipse.collections.api.block.function.Function0;
import org.eclipse.collections.api.block.function.Function2;
import org.eclipse.collections.api.block.procedure.Procedure;
import org.eclipse.collections.api.map.MutableMapIterable;
public final class NonMutatingAggregationProcedure<T, K, V> implements Procedure<T>
{
private static final long serialVersionUID = 1L;
private final MutableMapIterable<K, V> map;
private final Function<? super T, ? extends K> groupBy;
private final Function0<? extends V> zeroValueFactory;
private final Function2<? super V, ? super T, ? extends V> nonMutatingAggregator;
public NonMutatingAggregationProcedure(
MutableMapIterable<K, V> map,
Function<? super T, ? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Function2<? super V, ? super T, ? extends V> nonMutatingAggregator)
{
this.map = map;
this.groupBy = groupBy;
this.zeroValueFactory = zeroValueFactory;
this.nonMutatingAggregator = nonMutatingAggregator;
}
@Override
public void value(T each)
{
K key = this.groupBy.valueOf(each);
this.map.updateValueWith(key, this.zeroValueFactory, this.nonMutatingAggregator, each);
}
}