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

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

package io.virtdata.int_int;

import java.util.function.IntUnaryOperator;

public class HashRange implements IntUnaryOperator {

    private final int minValue;
    private final int  width;
    private final Hash hash = new Hash();

    public HashRange(int minValue, int maxValue) {
        this.minValue = minValue;

        if (maxValue




© 2015 - 2024 Weber Informatics LLC | Privacy Policy