binary.checked.FloatByteToIntE 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) -> int}.
*
* @param the {@code Exception} type that the operation may throw
*/
@FunctionalInterface
public interface FloatByteToIntE {
/**
* 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
*/
int call(float fl, byte b) throws E;
/**
* Binds {@code (fl)} to the beginning of {@code f}, returning a new function
* of type {@code (byte) -> int}.
*
* @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) -> int} that calls
* {@code f.call(fl, b)} and returns the result.
*/
static net.mintern.functions.unary.checked.ByteToIntE
bind(FloatByteToIntE 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) -> int}.
*
* @param fl argument 1
* @return a new function {@code (byte b) -> int} that calls
* {@code this.call(fl, b)} and returns the result.
*/
default net.mintern.functions.unary.checked.ByteToIntE bind(float fl) {
return FloatByteToIntE.bind(this, fl);
}
/**
* Binds {@code (b)} to the end of {@code f}, returning a new function
* of type {@code (float) -> int}.
*
* @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) -> int} that calls
* {@code f.call(fl, b)} and returns the result.
*/
static net.mintern.functions.unary.checked.FloatToIntE
rbind(FloatByteToIntE 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) -> int}.
*
* @param b argument 2
* @return a new function {@code (float fl) -> int} that calls
* {@code this.call(fl, b)} and returns the result.
*/
default net.mintern.functions.unary.checked.FloatToIntE rbind(byte b) {
return FloatByteToIntE.rbind(this, b);
}
/**
* Binds {@code (fl, b)} to {@code f}, returning a new function
* of type {@code () -> int}.
*
* @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 () -> int} that calls
* {@code f.call(fl, b)} and returns the result.
*/
static net.mintern.functions.nullary.checked.NilToIntE
bind(FloatByteToIntE f, float fl, byte b) {
return () -> f.call(fl, b);
}
/**
* Binds {@code (fl, b)} to {@code this}, returning a new function
* of type {@code () -> int}.
*
* @param fl argument 1
* @param b argument 2
* @return a new function {@code () -> int} that calls
* {@code this.call(fl, b)} and returns the result.
*/
default net.mintern.functions.nullary.checked.NilToIntE bind(float fl, byte b) {
return FloatByteToIntE.bind(this, fl, b);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy