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

binary.checked.CharDblToLongE Maven / Gradle / Ivy

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

/**
 * An operation of type {@code (char, double) -> long}.
 *
 * @param  the {@code Exception} type that the operation may throw
 */
@FunctionalInterface
public interface CharDblToLongE {

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

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

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy