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

io.virtdata.int_int.Mul Maven / Gradle / Ivy

package io.virtdata.int_int;

import java.util.function.IntUnaryOperator;

public class Mul implements IntUnaryOperator {

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

    private int addend;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy