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

binary.FloatCharToChar Maven / Gradle / Ivy

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

/**
 * An operation of type {@code (float, char) -> char}.
 *
 */
@FunctionalInterface
public interface FloatCharToChar extends
        net.mintern.functions.binary.checked.FloatCharToCharE {

    /**
     * Returns a wrapped version of {@code f} that uses {@code toRuntime} to convert any checked
     * {@code Exception} to a {@code RuntimeException}.
     *
     * @param  the {@code Exception} type that the operation may throw
     * @param toRuntime if a checked exception is thrown from
     *      {@link net.mintern.functions.binary.checked.FloatCharToCharE#call}, then this function
     *      is called in in order to convert it to a {@code RuntimeException}
     * @param f the operation to wrap
     * @return a wrapped version of {@code f} that does not throw checked exceptions
     */
    @SuppressWarnings("unchecked")
    static  FloatCharToChar unchecked(
            java.util.function.Function toRuntime,
            net.mintern.functions.binary.checked.FloatCharToCharE f) {
        return (fl, ch) -> {
            try {
                return f.call(fl, ch);
            } catch (RuntimeException e) {
                throw e;
            } catch (Exception e) {
                throw toRuntime.apply((E) e);
            }
        };
    }

    /**
     * Returns a wrapped version of {@code f} that wraps any checked {@code Exception} with a
     * {@code RuntimeException}.
     *
     * @param  the {@code Exception} type that the operation may throw
     * @param f the operation to wrap
     * @return a wrapped version of {@code f} that does not throw checked exceptions
     */
    static  FloatCharToChar unchecked(
            net.mintern.functions.binary.checked.FloatCharToCharE f) {
        return unchecked(RuntimeException::new, f);
    }

    /**
     * Returns a wrapped version of {@code f} that wraps any {@code IOException} with an
     * {@link java.io.UncheckedIOException}.
     *
     * @param  the {@code Exception} type that the operation may throw
     * @param f the operation to wrap
     * @return a wrapped version of {@code f} that throws {@code UncheckedIOException} instead of
     *      {@code IOException}
     */
    static  FloatCharToChar uncheckedIO(
            net.mintern.functions.binary.checked.FloatCharToCharE f) {
        return unchecked(java.io.UncheckedIOException::new, f);
    }

    /**
     * Binds {@code (fl)} to the beginning of {@code f}, returning a new function
     * of type {@code (char) -> char}.
     *
     * @param f the unbound function
     * @param fl argument 1
     * @return a new function {@code (char ch) -> char} that calls
     *      {@code f.call(fl, ch)} and returns the result.
     */
    static  net.mintern.functions.unary.CharToChar
    bind(FloatCharToChar f, float fl) {
        return (ch) -> f.call(fl, ch);
    }

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

    /**
     * Binds {@code (ch)} to the end of {@code f}, returning a new function
     * of type {@code (float) -> char}.
     *
     * @param f the unbound function
     * @param ch argument 2
     * @return a new function {@code (float fl) -> char} that calls
     *      {@code f.call(fl, ch)} and returns the result.
     */
    static  net.mintern.functions.unary.FloatToChar
    rbind(FloatCharToChar f, char ch) {
        return (fl) -> f.call(fl, ch);
    }

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

    /**
     * Binds {@code (fl, ch)} to {@code f}, returning a new function
     * of type {@code () -> char}.
     *
     * @param f the unbound function
     * @param fl argument 1
     * @param ch argument 2
     * @return a new function {@code () -> char} that calls
     *      {@code f.call(fl, ch)} and returns the result.
     */
    static  net.mintern.functions.nullary.NilToChar
    bind(FloatCharToChar f, float fl, char ch) {
        return () -> f.call(fl, ch);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy