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

io.github.vipcxj.jasync.ng.runtime.context.IntMap Maven / Gradle / Ivy

package io.github.vipcxj.jasync.ng.runtime.context;

public interface IntMap {

    T get(int key);
    IntMap set(int key, T value);
    IntMap remove(int key);

    static  IntMap empty() {
        //noinspection unchecked
        return (IntMap) Int0Map.EMPTY;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy