binary.checked.FloatByteToByteE Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of functions-binary-extended Show documentation
Show all versions of functions-binary-extended Show documentation
Provides functional interfaces for most two-argument functions
package net.mintern.functions.binary.checked;
/**
* An operation of type {@code (float, byte) -> byte}.
*
* @param the {@code Exception} type that the operation may throw
*/
@FunctionalInterface
public interface FloatByteToByteE {
/**
* Performs this operation.
*
* @param fl argument 1
* @param b argument 2
* @return the result of the operation
* @throws E if the operation cannot be completed
*/
byte call(float fl, byte b) throws E;
/**
* Binds {@code (fl)} to the beginning of {@code f}, returning a new function
* of type {@code (byte) -> byte}.
*
* @param the {@code Exception} type that the operation may throw
* @param f the unbound function
* @param fl argument 1
* @return a new function {@code (byte b) -> byte} that calls
* {@code f.call(fl, b)} and returns the result.
*/
static net.mintern.functions.unary.checked.ByteToByteE
bind(FloatByteToByteE f, float fl) {
return (b) -> f.call(fl, b);
}
/**
* Binds {@code (fl)} to the beginning of {@code this}, returning a new function
* of type {@code (byte) -> byte}.
*
* @param fl argument 1
* @return a new function {@code (byte b) -> byte} that calls
* {@code this.call(fl, b)} and returns the result.
*/
default net.mintern.functions.unary.checked.ByteToByteE bind(float fl) {
return FloatByteToByteE.bind(this, fl);
}
/**
* Binds {@code (b)} to the end of {@code f}, returning a new function
* of type {@code (float) -> byte}.
*
* @param the {@code Exception} type that the operation may throw
* @param f the unbound function
* @param b argument 2
* @return a new function {@code (float fl) -> byte} that calls
* {@code f.call(fl, b)} and returns the result.
*/
static net.mintern.functions.unary.checked.FloatToByteE
rbind(FloatByteToByteE f, byte b) {
return (fl) -> f.call(fl, b);
}
/**
* Binds {@code (b)} to the end of {@code this}, returning a new function
* of type {@code (float) -> byte}.
*
* @param b argument 2
* @return a new function {@code (float fl) -> byte} that calls
* {@code this.call(fl, b)} and returns the result.
*/
default net.mintern.functions.unary.checked.FloatToByteE rbind(byte b) {
return FloatByteToByteE.rbind(this, b);
}
/**
* Binds {@code (fl, b)} to {@code f}, returning a new function
* of type {@code () -> byte}.
*
* @param the {@code Exception} type that the operation may throw
* @param f the unbound function
* @param fl argument 1
* @param b argument 2
* @return a new function {@code () -> byte} that calls
* {@code f.call(fl, b)} and returns the result.
*/
static net.mintern.functions.nullary.checked.NilToByteE
bind(FloatByteToByteE f, float fl, byte b) {
return () -> f.call(fl, b);
}
/**
* Binds {@code (fl, b)} to {@code this}, returning a new function
* of type {@code () -> byte}.
*
* @param fl argument 1
* @param b argument 2
* @return a new function {@code () -> byte} that calls
* {@code this.call(fl, b)} and returns the result.
*/
default net.mintern.functions.nullary.checked.NilToByteE bind(float fl, byte b) {
return FloatByteToByteE.bind(this, fl, b);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy