io.virtdata.libbasics.shared.from_double.to_double.Clamp 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_double.to_double;
import io.virtdata.annotations.Example;
import io.virtdata.annotations.ThreadSafeMapper;
import java.util.function.DoubleUnaryOperator;
@ThreadSafeMapper
public class Clamp implements DoubleUnaryOperator {
private final double min;
private final double max;
@Example({"Clamp(1.0D,9.0D)","clamp output values between the range [1.0D, 9.0D], inclusive"})
public Clamp(double min, double max) {
this.min = min;
this.max = max;
}
@Override
public double applyAsDouble(double operand) {
return Double.min(max,Double.max(min,operand));
}
}