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

io.virtdata.libbasics.shared.unary_int.Add 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;

/**
 * Adds a value to the input.
 */
@ThreadSafeMapper
public class Add implements IntUnaryOperator {

    private int addend;

    @Example({"Add(23)", "adds integer 23 to the input integer value"})
    public Add(int addend) {
        this.addend = addend;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy