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

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

package io.virtdata.long_int;

import java.util.function.LongToIntFunction;

public class Add implements LongToIntFunction {

    private final long addend;

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

    @Override
    public int applyAsInt(long value) {
        return (int) ((value + addend) % Integer.MAX_VALUE);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy