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

net.mintern.functions.binary.checked.IntFloatToIntE Maven / Gradle / Ivy

The newest version!
package net.mintern.functions.binary.checked;

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

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

    /**
     * Binds {@code (i)} to the beginning of {@code f}, returning a new function
     * of type {@code (float) -> int}.
     *
     * @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) -> int} that calls
     *      {@code f.call(i, fl)} and returns the result.
     */
    static  net.mintern.functions.unary.checked.FloatToIntE
    bind(IntFloatToIntE 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) -> int}.
     *
     * @param i argument 1
     * @return a new function {@code (float fl) -> int} that calls
     *      {@code this.call(i, fl)} and returns the result.
     */
    default net.mintern.functions.unary.checked.FloatToIntE bind(int i) {
        return IntFloatToIntE.bind(this, i);
    }

    /**
     * Binds {@code (fl)} to the end of {@code f}, returning a new function
     * of type {@code (int) -> int}.
     *
     * @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) -> int} that calls
     *      {@code f.call(i, fl)} and returns the result.
     */
    static  net.mintern.functions.unary.checked.IntToIntE
    rbind(IntFloatToIntE 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) -> int}.
     *
     * @param fl argument 2
     * @return a new function {@code (int i) -> int} that calls
     *      {@code this.call(i, fl)} and returns the result.
     */
    default net.mintern.functions.unary.checked.IntToIntE rbind(float fl) {
        return IntFloatToIntE.rbind(this, fl);
    }

    /**
     * Binds {@code (i, fl)} to {@code f}, returning a new function
     * of type {@code () -> int}.
     *
     * @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 () -> int} that calls
     *      {@code f.call(i, fl)} and returns the result.
     */
    static  net.mintern.functions.nullary.checked.NilToIntE
    bind(IntFloatToIntE f, int i, float fl) {
        return () -> f.call(i, fl);
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy