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