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

binary.checked.IntFloatToNilE Maven / Gradle / Ivy

There is a newer version: 2.0
Show newest version
package net.mintern.functions.binary.checked;

/**
 * An operation of type {@code (int, float) -> void}.
 *
 * @param  the {@code Exception} type that the operation may throw
 */
@FunctionalInterface
public interface IntFloatToNilE {

    /**
     * Performs this operation.
     *
     * @param i argument 1
     * @param fl argument 2
     * @throws E if the operation cannot be completed
     */
    void call(int i, float fl) throws E;

    /**
     * Binds {@code (i)} to the beginning of {@code f}, returning a new function
     * of type {@code (float) -> void}.
     *
     * @param  the {@code Exception} type that the operation may throw
     * @param f the unbound function
     * @param i argument 1
     * @return a new function {@code (float fl) -> void} that calls
     *      {@code f.call(i, fl)}.
     */
    static  net.mintern.functions.unary.checked.FloatToNilE
    bind(IntFloatToNilE f, int i) {
        return (fl) -> f.call(i, fl);
    }

    /**
     * Binds {@code (i)} to the beginning of {@code this}, returning a new function
     * of type {@code (float) -> void}.
     *
     * @param i argument 1
     * @return a new function {@code (float fl) -> void} that calls
     *      {@code this.call(i, fl)}.
     */
    default net.mintern.functions.unary.checked.FloatToNilE bind(int i) {
        return IntFloatToNilE.bind(this, i);
    }

    /**
     * Binds {@code (fl)} to the end of {@code f}, returning a new function
     * of type {@code (int) -> void}.
     *
     * @param  the {@code Exception} type that the operation may throw
     * @param f the unbound function
     * @param fl argument 2
     * @return a new function {@code (int i) -> void} that calls
     *      {@code f.call(i, fl)}.
     */
    static  net.mintern.functions.unary.checked.IntToNilE
    rbind(IntFloatToNilE f, float fl) {
        return (i) -> f.call(i, fl);
    }

    /**
     * Binds {@code (fl)} to the end of {@code this}, returning a new function
     * of type {@code (int) -> void}.
     *
     * @param fl argument 2
     * @return a new function {@code (int i) -> void} that calls
     *      {@code this.call(i, fl)}.
     */
    default net.mintern.functions.unary.checked.IntToNilE rbind(float fl) {
        return IntFloatToNilE.rbind(this, fl);
    }

    /**
     * Binds {@code (i, fl)} to {@code f}, returning a new function
     * of type {@code () -> void}.
     *
     * @param  the {@code Exception} type that the operation may throw
     * @param f the unbound function
     * @param i argument 1
     * @param fl argument 2
     * @return a new function {@code () -> void} that calls
     *      {@code f.call(i, fl)}.
     */
    static  net.mintern.functions.nullary.checked.NilToNilE
    bind(IntFloatToNilE f, int i, float fl) {
        return () -> f.call(i, fl);
    }

    /**
     * Binds {@code (i, fl)} to {@code this}, returning a new function
     * of type {@code () -> void}.
     *
     * @param i argument 1
     * @param fl argument 2
     * @return a new function {@code () -> void} that calls
     *      {@code this.call(i, fl)}.
     */
    default net.mintern.functions.nullary.checked.NilToNilE bind(int i, float fl) {
        return IntFloatToNilE.bind(this, i, fl);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy