ternary.checked.ObjDblIntToIntE 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) -> int}.
*
* @param the type of argument 1
* @param the {@code Exception} type that the operation may throw
*/
@FunctionalInterface
public interface ObjDblIntToIntE {
/**
* 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
*/
int 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) -> int}.
*
* @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) -> int} that calls
* {@code f.call(t, d, i)} and returns the result.
*/
static net.mintern.functions.binary.checked.DblIntToIntE
bind(ObjDblIntToIntE 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) -> int}.
*
* @param t argument 1
* @return a new function {@code (double d, int i) -> int} that calls
* {@code this.call(t, d, i)} and returns the result.
*/
default net.mintern.functions.binary.checked.DblIntToIntE bind(T t) {
return ObjDblIntToIntE.bind(this, t);
}
/**
* Binds {@code (d, i)} to the end of {@code f}, returning a new function
* of type {@code (T) -> int}.
*
* @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) -> int} that calls
* {@code f.call(t, d, i)} and returns the result.
*/
static net.mintern.functions.unary.checked.ObjToIntE
rbind(ObjDblIntToIntE 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) -> int}.
*
* @param d argument 2
* @param i argument 3
* @return a new function {@code (T t) -> int} that calls
* {@code this.call(t, d, i)} and returns the result.
*/
default net.mintern.functions.unary.checked.ObjToIntE rbind(double d, int i) {
return ObjDblIntToIntE.rbind(this, d, i);
}
/**
* Binds {@code (t, d)} to the beginning of {@code f}, returning a new function
* of type {@code (int) -> int}.
*
* @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) -> int} that calls
* {@code f.call(t, d, i)} and returns the result.
*/
static net.mintern.functions.unary.checked.IntToIntE
bind(ObjDblIntToIntE 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) -> int}.
*
* @param t argument 1
* @param d argument 2
* @return a new function {@code (int i) -> int} that calls
* {@code this.call(t, d, i)} and returns the result.
*/
default net.mintern.functions.unary.checked.IntToIntE bind(T t, double d) {
return ObjDblIntToIntE.bind(this, t, d);
}
/**
* Binds {@code (i)} to the end of {@code f}, returning a new function
* of type {@code (T, double) -> int}.
*
* @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) -> int} that calls
* {@code f.call(t, d, i)} and returns the result.
*/
static net.mintern.functions.binary.checked.ObjDblToIntE
rbind(ObjDblIntToIntE 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) -> int}.
*
* @param i argument 3
* @return a new function {@code (T t, double d) -> int} that calls
* {@code this.call(t, d, i)} and returns the result.
*/
default net.mintern.functions.binary.checked.ObjDblToIntE rbind(int i) {
return ObjDblIntToIntE.rbind(this, i);
}
/**
* Binds {@code (t, d, i)} to {@code f}, returning a new function
* of type {@code () -> int}.
*
* @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 () -> int} that calls
* {@code f.call(t, d, i)} and returns the result.
*/
static net.mintern.functions.nullary.checked.NilToIntE
bind(ObjDblIntToIntE 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 () -> int}.
*
* @param t argument 1
* @param d argument 2
* @param i argument 3
* @return a new function {@code () -> int} that calls
* {@code this.call(t, d, i)} and returns the result.
*/
default net.mintern.functions.nullary.checked.NilToIntE bind(T t, double d, int i) {
return ObjDblIntToIntE.bind(this, t, d, i);
}
}