ternary.checked.ObjDblIntToBoolE 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 (T, double, int) -> boolean}.
*
* @param the type of argument 1
* @param the {@code Exception} type that the operation may throw
*/
@FunctionalInterface
public interface ObjDblIntToBoolE {
/**
* Performs this operation.
*
* @param t argument 1
* @param d argument 2
* @param i argument 3
* @return the result of the operation
* @throws E if the operation cannot be completed
*/
boolean call(T t, double d, int i) throws E;
/**
* Binds {@code (t)} to the beginning of {@code f}, returning a new function
* of type {@code (double, int) -> boolean}.
*
* @param the type of argument 1
* @param the {@code Exception} type that the operation may throw
* @param f the unbound function
* @param t argument 1
* @return a new function {@code (double d, int i) -> boolean} that calls
* {@code f.call(t, d, i)} and returns the result.
*/
static net.mintern.functions.binary.checked.DblIntToBoolE
bind(ObjDblIntToBoolE f, T t) {
return (d, i) -> f.call(t, d, i);
}
/**
* Binds {@code (t)} to the beginning of {@code this}, returning a new function
* of type {@code (double, int) -> boolean}.
*
* @param t argument 1
* @return a new function {@code (double d, int i) -> boolean} that calls
* {@code this.call(t, d, i)} and returns the result.
*/
default net.mintern.functions.binary.checked.DblIntToBoolE bind(T t) {
return ObjDblIntToBoolE.bind(this, t);
}
/**
* Binds {@code (d, i)} to the end of {@code f}, returning a new function
* of type {@code (T) -> boolean}.
*
* @param the type of argument 1
* @param the {@code Exception} type that the operation may throw
* @param f the unbound function
* @param d argument 2
* @param i argument 3
* @return a new function {@code (T t) -> boolean} that calls
* {@code f.call(t, d, i)} and returns the result.
*/
static net.mintern.functions.unary.checked.ObjToBoolE
rbind(ObjDblIntToBoolE f, double d, int i) {
return (t) -> f.call(t, d, i);
}
/**
* Binds {@code (d, i)} to the end of {@code this}, returning a new function
* of type {@code (T) -> boolean}.
*
* @param d argument 2
* @param i argument 3
* @return a new function {@code (T t) -> boolean} that calls
* {@code this.call(t, d, i)} and returns the result.
*/
default net.mintern.functions.unary.checked.ObjToBoolE rbind(double d, int i) {
return ObjDblIntToBoolE.rbind(this, d, i);
}
/**
* Binds {@code (t, d)} to the beginning of {@code f}, returning a new function
* of type {@code (int) -> boolean}.
*
* @param the type of argument 1
* @param the {@code Exception} type that the operation may throw
* @param f the unbound function
* @param t argument 1
* @param d argument 2
* @return a new function {@code (int i) -> boolean} that calls
* {@code f.call(t, d, i)} and returns the result.
*/
static net.mintern.functions.unary.checked.IntToBoolE
bind(ObjDblIntToBoolE f, T t, double d) {
return (i) -> f.call(t, d, i);
}
/**
* Binds {@code (t, d)} to the beginning of {@code this}, returning a new function
* of type {@code (int) -> boolean}.
*
* @param t argument 1
* @param d argument 2
* @return a new function {@code (int i) -> boolean} that calls
* {@code this.call(t, d, i)} and returns the result.
*/
default net.mintern.functions.unary.checked.IntToBoolE bind(T t, double d) {
return ObjDblIntToBoolE.bind(this, t, d);
}
/**
* Binds {@code (i)} to the end of {@code f}, returning a new function
* of type {@code (T, double) -> boolean}.
*
* @param the type of argument 1
* @param the {@code Exception} type that the operation may throw
* @param f the unbound function
* @param i argument 3
* @return a new function {@code (T t, double d) -> boolean} that calls
* {@code f.call(t, d, i)} and returns the result.
*/
static net.mintern.functions.binary.checked.ObjDblToBoolE
rbind(ObjDblIntToBoolE f, int i) {
return (t, d) -> f.call(t, d, i);
}
/**
* Binds {@code (i)} to the end of {@code this}, returning a new function
* of type {@code (T, double) -> boolean}.
*
* @param i argument 3
* @return a new function {@code (T t, double d) -> boolean} that calls
* {@code this.call(t, d, i)} and returns the result.
*/
default net.mintern.functions.binary.checked.ObjDblToBoolE rbind(int i) {
return ObjDblIntToBoolE.rbind(this, i);
}
/**
* Binds {@code (t, d, i)} to {@code f}, returning a new function
* of type {@code () -> boolean}.
*
* @param the type of argument 1
* @param the {@code Exception} type that the operation may throw
* @param f the unbound function
* @param t argument 1
* @param d argument 2
* @param i argument 3
* @return a new function {@code () -> boolean} that calls
* {@code f.call(t, d, i)} and returns the result.
*/
static net.mintern.functions.nullary.checked.NilToBoolE
bind(ObjDblIntToBoolE f, T t, double d, int i) {
return () -> f.call(t, d, i);
}
/**
* Binds {@code (t, d, i)} to {@code this}, returning a new function
* of type {@code () -> boolean}.
*
* @param t argument 1
* @param d argument 2
* @param i argument 3
* @return a new function {@code () -> boolean} that calls
* {@code this.call(t, d, i)} and returns the result.
*/
default net.mintern.functions.nullary.checked.NilToBoolE bind(T t, double d, int i) {
return ObjDblIntToBoolE.bind(this, t, d, i);
}
}