binary.checked.FloatCharToObjE 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, char) -> R}.
*
* @param the type of the return value
* @param the {@code Exception} type that the operation may throw
*/
@FunctionalInterface
public interface FloatCharToObjE {
/**
* Performs this operation.
*
* @param fl argument 1
* @param ch argument 2
* @return the result of the operation
* @throws E if the operation cannot be completed
*/
R call(float fl, char ch) throws E;
/**
* Binds {@code (fl)} to the beginning of {@code f}, returning a new function
* of type {@code (char) -> R}.
*
* @param the type of the return value
* @param the {@code Exception} type that the operation may throw
* @param f the unbound function
* @param fl argument 1
* @return a new function {@code (char ch) -> R} that calls
* {@code f.call(fl, ch)} and returns the result.
*/
static net.mintern.functions.unary.checked.CharToObjE
bind(FloatCharToObjE 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) -> R}.
*
* @param fl argument 1
* @return a new function {@code (char ch) -> R} that calls
* {@code this.call(fl, ch)} and returns the result.
*/
default net.mintern.functions.unary.checked.CharToObjE bind(float fl) {
return FloatCharToObjE.bind(this, fl);
}
/**
* Binds {@code (ch)} to the end of {@code f}, returning a new function
* of type {@code (float) -> R}.
*
* @param the type of the return value
* @param the {@code Exception} type that the operation may throw
* @param f the unbound function
* @param ch argument 2
* @return a new function {@code (float fl) -> R} that calls
* {@code f.call(fl, ch)} and returns the result.
*/
static net.mintern.functions.unary.checked.FloatToObjE
rbind(FloatCharToObjE 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) -> R}.
*
* @param ch argument 2
* @return a new function {@code (float fl) -> R} that calls
* {@code this.call(fl, ch)} and returns the result.
*/
default net.mintern.functions.unary.checked.FloatToObjE rbind(char ch) {
return FloatCharToObjE.rbind(this, ch);
}
/**
* Binds {@code (fl, ch)} to {@code f}, returning a new function
* of type {@code () -> R}.
*
* @param the type of the return value
* @param the {@code Exception} type that the operation may throw
* @param f the unbound function
* @param fl argument 1
* @param ch argument 2
* @return a new function {@code () -> R} that calls
* {@code f.call(fl, ch)} and returns the result.
*/
@SuppressWarnings("unchecked") // maven spuriously warns about a type error in this case
static net.mintern.functions.nullary.checked.NilToObjE
bind(FloatCharToObjE f, float fl, char ch) {
return () -> f.call(fl, ch);
}
/**
* Binds {@code (fl, ch)} to {@code this}, returning a new function
* of type {@code () -> R}.
*
* @param fl argument 1
* @param ch argument 2
* @return a new function {@code () -> R} that calls
* {@code this.call(fl, ch)} and returns the result.
*/
default net.mintern.functions.nullary.checked.NilToObjE bind(float fl, char ch) {
return FloatCharToObjE.bind(this, fl, ch);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy