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