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