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

binary.checked.ByteDblToObjE Maven / Gradle / Ivy

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

/**
 * An operation of type {@code (byte, double) -> R}.
 *
 * @param  the type of the return value
 * @param  the {@code Exception} type that the operation may throw
 */
@FunctionalInterface
public interface ByteDblToObjE {

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

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

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

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

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

    /**
     * Binds {@code (b, d)} to {@code f}, returning a new function
     * of type {@code () -> R}.
     *
     * @param  the type of the return value
     * @param  the {@code Exception} type that the operation may throw
     * @param f the unbound function
     * @param b argument 1
     * @param d argument 2
     * @return a new function {@code () -> R} that calls
     *      {@code f.call(b, d)} and returns the result.
     */
    @SuppressWarnings("unchecked") // maven spuriously warns about a type error in this case
    static  net.mintern.functions.nullary.checked.NilToObjE
    bind(ByteDblToObjE f, byte b, double d) {
        return () -> f.call(b, d);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy