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

io.virtdata.ints.Add Maven / Gradle / Ivy

package io.virtdata.ints;

import java.util.function.IntUnaryOperator;

public class Add implements IntUnaryOperator {

    private int addend;

    public Add(int addend) {
        this.addend = addend;
    }

    @Override
    public int applyAsInt(int operand) {
        return operand + addend;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy