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

com.accelad.math.doubledouble.DoubleMap Maven / Gradle / Ivy

The newest version!
package com.accelad.math.doubledouble;

import java.util.function.Supplier;

class DoubleMap {

    public static final int SIZE_LIMIT = 500000;
    private final CacheMap map = new CacheMap<>(SIZE_LIMIT);

    T get(Double key, Supplier supplier) {
        return map.get(key, supplier);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy