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