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