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