net.mintern.functions.ternary.checked.ObjDblIntToDblE 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
The newest version!
package net.mintern.functions.ternary.checked;
/**
* An operation of type {@code (T, double, int) -> double}.
*
* @param the type of argument 1
* @param the {@code Exception} type that the operation may throw
*/
@FunctionalInterface
public interface ObjDblIntToDblE {
/**
* 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
*/
double 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) -> double}.
*
* @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) -> double} that calls
* {@code f.call(t, d, i)} and returns the result.
*/
static net.mintern.functions.binary.checked.DblIntToDblE
bind(ObjDblIntToDblE 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) -> double}.
*
* @param t argument 1
* @return a new function {@code (double d, int i) -> double} that calls
* {@code this.call(t, d, i)} and returns the result.
*/
default net.mintern.functions.binary.checked.DblIntToDblE bind(T t) {
return ObjDblIntToDblE.bind(this, t);
}
/**
* Binds {@code (d, i)} to the end of {@code f}, returning a new function
* of type {@code (T) -> double}.
*
* @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) -> double} that calls
* {@code f.call(t, d, i)} and returns the result.
*/
static net.mintern.functions.unary.checked.ObjToDblE
rbind(ObjDblIntToDblE 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) -> double}.
*
* @param d argument 2
* @param i argument 3
* @return a new function {@code (T t) -> double} that calls
* {@code this.call(t, d, i)} and returns the result.
*/
default net.mintern.functions.unary.checked.ObjToDblE rbind(double d, int i) {
return ObjDblIntToDblE.rbind(this, d, i);
}
/**
* Binds {@code (t, d)} to the beginning of {@code f}, returning a new function
* of type {@code (int) -> double}.
*
* @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) -> double} that calls
* {@code f.call(t, d, i)} and returns the result.
*/
static net.mintern.functions.unary.checked.IntToDblE
bind(ObjDblIntToDblE 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) -> double}.
*
* @param t argument 1
* @param d argument 2
* @return a new function {@code (int i) -> double} that calls
* {@code this.call(t, d, i)} and returns the result.
*/
default net.mintern.functions.unary.checked.IntToDblE bind(T t, double d) {
return ObjDblIntToDblE.bind(this, t, d);
}
/**
* Binds {@code (i)} to the end of {@code f}, returning a new function
* of type {@code (T, double) -> double}.
*
* @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) -> double} that calls
* {@code f.call(t, d, i)} and returns the result.
*/
static net.mintern.functions.binary.checked.ObjDblToDblE
rbind(ObjDblIntToDblE 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) -> double}.
*
* @param i argument 3
* @return a new function {@code (T t, double d) -> double} that calls
* {@code this.call(t, d, i)} and returns the result.
*/
default net.mintern.functions.binary.checked.ObjDblToDblE rbind(int i) {
return ObjDblIntToDblE.rbind(this, i);
}
/**
* Binds {@code (t, d, i)} to {@code f}, returning a new function
* of type {@code () -> double}.
*
* @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 () -> double} that calls
* {@code f.call(t, d, i)} and returns the result.
*/
static net.mintern.functions.nullary.checked.NilToDblE
bind(ObjDblIntToDblE 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 () -> double}.
*
* @param t argument 1
* @param d argument 2
* @param i argument 3
* @return a new function {@code () -> double} that calls
* {@code this.call(t, d, i)} and returns the result.
*/
default net.mintern.functions.nullary.checked.NilToDblE bind(T t, double d, int i) {
return ObjDblIntToDblE.bind(this, t, d, i);
}
}