net.mintern.functions.binary.checked.IntObjToBoolE Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of functions-binary-core Show documentation
Show all versions of functions-binary-core Show documentation
Provides functional interfaces for the most commonly used two-argument functions
The newest version!
package net.mintern.functions.binary.checked;
/**
* An operation of type {@code (int, U) -> boolean}.
*
* @param the type of argument 2
* @param the {@code Exception} type that the operation may throw
*/
@FunctionalInterface
public interface IntObjToBoolE {
/**
* Performs this operation.
*
* @param i argument 1
* @param u argument 2
* @return the result of the operation
* @throws E if the operation cannot be completed
*/
boolean call(int i, U u) throws E;
/**
* Binds {@code (i)} to the beginning of {@code f}, returning a new function
* of type {@code (U) -> boolean}.
*
* @param the type of argument 2
* @param the {@code Exception} type that the operation may throw
* @param f the unbound function
* @param i argument 1
* @return a new function {@code (U u) -> boolean} that calls
* {@code f.call(i, u)} and returns the result.
*/
static net.mintern.functions.unary.checked.ObjToBoolE
bind(IntObjToBoolE f, int i) {
return (u) -> f.call(i, u);
}
/**
* Binds {@code (i)} to the beginning of {@code this}, returning a new function
* of type {@code (U) -> boolean}.
*
* @param i argument 1
* @return a new function {@code (U u) -> boolean} that calls
* {@code this.call(i, u)} and returns the result.
*/
default net.mintern.functions.unary.checked.ObjToBoolE bind(int i) {
return IntObjToBoolE.bind(this, i);
}
/**
* Binds {@code (u)} to the end of {@code f}, returning a new function
* of type {@code (int) -> boolean}.
*
* @param the type of argument 2
* @param the {@code Exception} type that the operation may throw
* @param f the unbound function
* @param u argument 2
* @return a new function {@code (int i) -> boolean} that calls
* {@code f.call(i, u)} and returns the result.
*/
static net.mintern.functions.unary.checked.IntToBoolE
rbind(IntObjToBoolE f, U u) {
return (i) -> f.call(i, u);
}
/**
* Binds {@code (u)} to the end of {@code this}, returning a new function
* of type {@code (int) -> boolean}.
*
* @param u argument 2
* @return a new function {@code (int i) -> boolean} that calls
* {@code this.call(i, u)} and returns the result.
*/
default net.mintern.functions.unary.checked.IntToBoolE rbind(U u) {
return IntObjToBoolE.rbind(this, u);
}
/**
* Binds {@code (i, u)} to {@code f}, returning a new function
* of type {@code () -> boolean}.
*
* @param the type of argument 2
* @param the {@code Exception} type that the operation may throw
* @param f the unbound function
* @param i argument 1
* @param u argument 2
* @return a new function {@code () -> boolean} that calls
* {@code f.call(i, u)} and returns the result.
*/
static net.mintern.functions.nullary.checked.NilToBoolE
bind(IntObjToBoolE f, int i, U u) {
return () -> f.call(i, u);
}
/**
* Binds {@code (i, u)} to {@code this}, returning a new function
* of type {@code () -> boolean}.
*
* @param i argument 1
* @param u argument 2
* @return a new function {@code () -> boolean} that calls
* {@code this.call(i, u)} and returns the result.
*/
default net.mintern.functions.nullary.checked.NilToBoolE bind(int i, U u) {
return IntObjToBoolE.bind(this, i, u);
}
}