io.virtdata.libbasics.shared.from_long.to_long.AddCycleRange Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of virtdata-lib-realer Show documentation
Show all versions of virtdata-lib-realer Show documentation
With inspiration from other libraries
package io.virtdata.libbasics.shared.from_long.to_long;
import io.virtdata.annotations.ThreadSafeMapper;
import java.util.function.LongUnaryOperator;
@ThreadSafeMapper
public class AddCycleRange implements LongUnaryOperator {
private final CycleRange cycleRange;
public AddCycleRange(long maxValue) {
this(0, maxValue);
}
public AddCycleRange(long minValue, long maxValue) {
this.cycleRange = new CycleRange(minValue,maxValue);
}
@Override
public long applyAsLong(long operand) {
return operand + cycleRange.applyAsLong(operand);
}
}