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

binary.checked.ByteDblToFloatE 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) -> float}.
 *
 * @param  the {@code Exception} type that the operation may throw
 */
@FunctionalInterface
public interface ByteDblToFloatE {

    /**
     * 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
     */
    float call(byte b, double d) throws E;

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy