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

io.virtdata.libbasics.shared.unary_int.Max 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.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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy