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

binary.checked.ObjCharToFloatE Maven / Gradle / Ivy

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

/**
 * An operation of type {@code (T, char) -> float}.
 *
 * @param  the type of argument 1
 * @param  the {@code Exception} type that the operation may throw
 */
@FunctionalInterface
public interface ObjCharToFloatE {

    /**
     * Performs this operation.
     *
     * @param t argument 1
     * @param ch argument 2
     * @return the result of the operation
     * @throws E if the operation cannot be completed
     */
    float call(T t, char ch) throws E;

    /**
     * Binds {@code (t)} to the beginning of {@code f}, returning a new function
     * of type {@code (char) -> float}.
     *
     * @param  the type of argument 1
     * @param  the {@code Exception} type that the operation may throw
     * @param f the unbound function
     * @param t argument 1
     * @return a new function {@code (char ch) -> float} that calls
     *      {@code f.call(t, ch)} and returns the result.
     */
    static  net.mintern.functions.unary.checked.CharToFloatE
    bind(ObjCharToFloatE f, T t) {
        return (ch) -> f.call(t, ch);
    }

    /**
     * Binds {@code (t)} to the beginning of {@code this}, returning a new function
     * of type {@code (char) -> float}.
     *
     * @param t argument 1
     * @return a new function {@code (char ch) -> float} that calls
     *      {@code this.call(t, ch)} and returns the result.
     */
    default net.mintern.functions.unary.checked.CharToFloatE bind(T t) {
        return ObjCharToFloatE.bind(this, t);
    }

    /**
     * Binds {@code (ch)} to the end of {@code f}, returning a new function
     * of type {@code (T) -> float}.
     *
     * @param  the type of argument 1
     * @param  the {@code Exception} type that the operation may throw
     * @param f the unbound function
     * @param ch argument 2
     * @return a new function {@code (T t) -> float} that calls
     *      {@code f.call(t, ch)} and returns the result.
     */
    static  net.mintern.functions.unary.checked.ObjToFloatE
    rbind(ObjCharToFloatE f, char ch) {
        return (t) -> f.call(t, ch);
    }

    /**
     * Binds {@code (ch)} to the end of {@code this}, returning a new function
     * of type {@code (T) -> float}.
     *
     * @param ch argument 2
     * @return a new function {@code (T t) -> float} that calls
     *      {@code this.call(t, ch)} and returns the result.
     */
    default net.mintern.functions.unary.checked.ObjToFloatE rbind(char ch) {
        return ObjCharToFloatE.rbind(this, ch);
    }

    /**
     * Binds {@code (t, ch)} to {@code f}, returning a new function
     * of type {@code () -> float}.
     *
     * @param  the type of argument 1
     * @param  the {@code Exception} type that the operation may throw
     * @param f the unbound function
     * @param t argument 1
     * @param ch argument 2
     * @return a new function {@code () -> float} that calls
     *      {@code f.call(t, ch)} and returns the result.
     */
    static  net.mintern.functions.nullary.checked.NilToFloatE
    bind(ObjCharToFloatE f, T t, char ch) {
        return () -> f.call(t, ch);
    }

    /**
     * Binds {@code (t, ch)} to {@code this}, returning a new function
     * of type {@code () -> float}.
     *
     * @param t argument 1
     * @param ch argument 2
     * @return a new function {@code () -> float} that calls
     *      {@code this.call(t, ch)} and returns the result.
     */
    default net.mintern.functions.nullary.checked.NilToFloatE bind(T t, char ch) {
        return ObjCharToFloatE.bind(this, t, ch);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy