All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.virtdata.libbasics.shared.unary_int.Clamp Maven / Gradle / Ivy

There is a newer version: 2.12.15
Show newest version
package io.virtdata.libbasics.shared.unary_int;

import io.virtdata.annotations.Example;
import io.virtdata.annotations.ThreadSafeMapper;

import java.util.function.IntUnaryOperator;

@ThreadSafeMapper
public class Clamp implements IntUnaryOperator {

    private final int min;
    private final int max;

    @Example({"Clamp(1,100)","clamp the output values in the range [1,100], inclusive"})
    public Clamp(int min, int max) {
        this.min = min;
        this.max = max;
    }

    @Override
    public int applyAsInt(int operand) {
        return Integer.min(max,Integer.max(min,operand));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy