io.virtdata.libbasics.shared.unary_int.AddHashRange 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.unary_int;
import io.virtdata.annotations.ThreadSafeMapper;
import java.util.function.IntUnaryOperator;
/**
* Adds a pseudo-random value within the specified range to the input.
*/
@ThreadSafeMapper
public class AddHashRange implements IntUnaryOperator {
private final io.virtdata.libbasics.shared.unary_int.HashRange hashRange;
public AddHashRange(int maxValue) {
this(0, maxValue);
}
public AddHashRange(int minValue, int maxValue) {
this.hashRange = new io.virtdata.libbasics.shared.unary_int.HashRange(minValue, maxValue);
}
@Override
public int applyAsInt(int operand) {
return operand + hashRange.applyAsInt(operand);
}
}