io.virtdata.libbasics.shared.unary_int.Max 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;
@ThreadSafeMapper
public class Max implements IntUnaryOperator {
private final int max;
public Max(int max) {
this.max = max;
}
@Override
public int applyAsInt(int operand) {
return Math.max(operand,max);
}
}