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