ternary.checked.DblObjObjToObjE 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 (double, U, V) -> R}.
*
* @param the type of argument 2
* @param the type of argument 3
* @param the type of the return value
* @param the {@code Exception} type that the operation may throw
*/
@FunctionalInterface
public interface DblObjObjToObjE {
/**
* Performs this operation.
*
* @param d argument 1
* @param u argument 2
* @param v argument 3
* @return the result of the operation
* @throws E if the operation cannot be completed
*/
R call(double d, U u, V v) throws E;
/**
* Binds {@code (d)} to the beginning of {@code f}, returning a new function
* of type {@code (U, V) -> R}.
*
* @param the type of argument 2
* @param the type of argument 3
* @param the type of the return value
* @param the {@code Exception} type that the operation may throw
* @param f the unbound function
* @param d argument 1
* @return a new function {@code (U u, V v) -> R} that calls
* {@code f.call(d, u, v)} and returns the result.
*/
static net.mintern.functions.binary.checked.ObjObjToObjE
bind(DblObjObjToObjE f, double d) {
return (u, v) -> f.call(d, u, v);
}
/**
* Binds {@code (d)} to the beginning of {@code this}, returning a new function
* of type {@code (U, V) -> R}.
*
* @param d argument 1
* @return a new function {@code (U u, V v) -> R} that calls
* {@code this.call(d, u, v)} and returns the result.
*/
default net.mintern.functions.binary.checked.ObjObjToObjE bind(double d) {
return DblObjObjToObjE.bind(this, d);
}
/**
* Binds {@code (u, v)} to the end of {@code f}, returning a new function
* of type {@code (double) -> R}.
*
* @param the type of argument 2
* @param the type of argument 3
* @param the type of the return value
* @param the {@code Exception} type that the operation may throw
* @param f the unbound function
* @param u argument 2
* @param v argument 3
* @return a new function {@code (double d) -> R} that calls
* {@code f.call(d, u, v)} and returns the result.
*/
static net.mintern.functions.unary.checked.DblToObjE
rbind(DblObjObjToObjE f, U u, V v) {
return (d) -> f.call(d, u, v);
}
/**
* Binds {@code (u, v)} to the end of {@code this}, returning a new function
* of type {@code (double) -> R}.
*
* @param u argument 2
* @param v argument 3
* @return a new function {@code (double d) -> R} that calls
* {@code this.call(d, u, v)} and returns the result.
*/
default net.mintern.functions.unary.checked.DblToObjE rbind(U u, V v) {
return DblObjObjToObjE.rbind(this, u, v);
}
/**
* Binds {@code (d, u)} to the beginning of {@code f}, returning a new function
* of type {@code (V) -> R}.
*
* @param the type of argument 2
* @param the type of argument 3
* @param the type of the return value
* @param the {@code Exception} type that the operation may throw
* @param f the unbound function
* @param d argument 1
* @param u argument 2
* @return a new function {@code (V v) -> R} that calls
* {@code f.call(d, u, v)} and returns the result.
*/
static net.mintern.functions.unary.checked.ObjToObjE
bind(DblObjObjToObjE f, double d, U u) {
return (v) -> f.call(d, u, v);
}
/**
* Binds {@code (d, u)} to the beginning of {@code this}, returning a new function
* of type {@code (V) -> R}.
*
* @param d argument 1
* @param u argument 2
* @return a new function {@code (V v) -> R} that calls
* {@code this.call(d, u, v)} and returns the result.
*/
default net.mintern.functions.unary.checked.ObjToObjE bind(double d, U u) {
return DblObjObjToObjE.bind(this, d, u);
}
/**
* Binds {@code (v)} to the end of {@code f}, returning a new function
* of type {@code (double, U) -> R}.
*
* @param the type of argument 2
* @param the type of argument 3
* @param the type of the return value
* @param the {@code Exception} type that the operation may throw
* @param f the unbound function
* @param v argument 3
* @return a new function {@code (double d, U u) -> R} that calls
* {@code f.call(d, u, v)} and returns the result.
*/
static net.mintern.functions.binary.checked.DblObjToObjE
rbind(DblObjObjToObjE f, V v) {
return (d, u) -> f.call(d, u, v);
}
/**
* Binds {@code (v)} to the end of {@code this}, returning a new function
* of type {@code (double, U) -> R}.
*
* @param v argument 3
* @return a new function {@code (double d, U u) -> R} that calls
* {@code this.call(d, u, v)} and returns the result.
*/
default net.mintern.functions.binary.checked.DblObjToObjE rbind(V v) {
return DblObjObjToObjE.rbind(this, v);
}
/**
* Binds {@code (d, u, v)} to {@code f}, returning a new function
* of type {@code () -> R}.
*
* @param the type of argument 2
* @param the type of argument 3
* @param the type of the return value
* @param the {@code Exception} type that the operation may throw
* @param f the unbound function
* @param d argument 1
* @param u argument 2
* @param v argument 3
* @return a new function {@code () -> R} that calls
* {@code f.call(d, u, v)} and returns the result.
*/
@SuppressWarnings("unchecked") // maven spuriously warns about a type error in this case
static net.mintern.functions.nullary.checked.NilToObjE
bind(DblObjObjToObjE f, double d, U u, V v) {
return () -> f.call(d, u, v);
}
/**
* Binds {@code (d, u, v)} to {@code this}, returning a new function
* of type {@code () -> R}.
*
* @param d argument 1
* @param u argument 2
* @param v argument 3
* @return a new function {@code () -> R} that calls
* {@code this.call(d, u, v)} and returns the result.
*/
default net.mintern.functions.nullary.checked.NilToObjE bind(double d, U u, V v) {
return DblObjObjToObjE.bind(this, d, u, v);
}
}