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

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

There is a newer version: 1.2.1
Show newest version
package io.virtdata.int_int;

import java.util.function.IntUnaryOperator;

public class AddHashRange implements IntUnaryOperator {

    private final io.virtdata.int_int.HashRange hashRange;

    public AddHashRange(int maxValue) {
        this(0, maxValue);
    }

    public AddHashRange(int minValue, int maxValue) {
        this.hashRange = new io.virtdata.int_int.HashRange(minValue, maxValue);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy