net.mintern.functions.ternary.checked.LongObjObjToDblE 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 (long, U, V) -> double}.
*
* @param the type of argument 2
* @param the type of argument 3
* @param the {@code Exception} type that the operation may throw
*/
@FunctionalInterface
public interface LongObjObjToDblE {
/**
* Performs this operation.
*
* @param l argument 1
* @param u argument 2
* @param v argument 3
* @return the result of the operation
* @throws E if the operation cannot be completed
*/
double call(long l, U u, V v) throws E;
/**
* Binds {@code (l)} to the beginning of {@code f}, returning a new function
* of type {@code (U, V) -> double}.
*
* @param the type of argument 2
* @param the type of argument 3
* @param the {@code Exception} type that the operation may throw
* @param f the unbound function
* @param l argument 1
* @return a new function {@code (U u, V v) -> double} that calls
* {@code f.call(l, u, v)} and returns the result.
*/
static net.mintern.functions.binary.checked.ObjObjToDblE
bind(LongObjObjToDblE f, long l) {
return (u, v) -> f.call(l, u, v);
}
/**
* Binds {@code (l)} to the beginning of {@code this}, returning a new function
* of type {@code (U, V) -> double}.
*
* @param l argument 1
* @return a new function {@code (U u, V v) -> double} that calls
* {@code this.call(l, u, v)} and returns the result.
*/
default net.mintern.functions.binary.checked.ObjObjToDblE bind(long l) {
return LongObjObjToDblE.bind(this, l);
}
/**
* Binds {@code (u, v)} to the end of {@code f}, returning a new function
* of type {@code (long) -> double}.
*
* @param the type of argument 2
* @param the type of argument 3
* @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 (long l) -> double} that calls
* {@code f.call(l, u, v)} and returns the result.
*/
static net.mintern.functions.unary.checked.LongToDblE
rbind(LongObjObjToDblE f, U u, V v) {
return (l) -> f.call(l, u, v);
}
/**
* Binds {@code (u, v)} to the end of {@code this}, returning a new function
* of type {@code (long) -> double}.
*
* @param u argument 2
* @param v argument 3
* @return a new function {@code (long l) -> double} that calls
* {@code this.call(l, u, v)} and returns the result.
*/
default net.mintern.functions.unary.checked.LongToDblE rbind(U u, V v) {
return LongObjObjToDblE.rbind(this, u, v);
}
/**
* Binds {@code (l, u)} to the beginning of {@code f}, returning a new function
* of type {@code (V) -> double}.
*
* @param the type of argument 2
* @param the type of argument 3
* @param the {@code Exception} type that the operation may throw
* @param f the unbound function
* @param l argument 1
* @param u argument 2
* @return a new function {@code (V v) -> double} that calls
* {@code f.call(l, u, v)} and returns the result.
*/
static net.mintern.functions.unary.checked.ObjToDblE
bind(LongObjObjToDblE f, long l, U u) {
return (v) -> f.call(l, u, v);
}
/**
* Binds {@code (l, u)} to the beginning of {@code this}, returning a new function
* of type {@code (V) -> double}.
*
* @param l argument 1
* @param u argument 2
* @return a new function {@code (V v) -> double} that calls
* {@code this.call(l, u, v)} and returns the result.
*/
default net.mintern.functions.unary.checked.ObjToDblE bind(long l, U u) {
return LongObjObjToDblE.bind(this, l, u);
}
/**
* Binds {@code (v)} to the end of {@code f}, returning a new function
* of type {@code (long, U) -> double}.
*
* @param the type of argument 2
* @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 (long l, U u) -> double} that calls
* {@code f.call(l, u, v)} and returns the result.
*/
static net.mintern.functions.binary.checked.LongObjToDblE
rbind(LongObjObjToDblE f, V v) {
return (l, u) -> f.call(l, u, v);
}
/**
* Binds {@code (v)} to the end of {@code this}, returning a new function
* of type {@code (long, U) -> double}.
*
* @param v argument 3
* @return a new function {@code (long l, U u) -> double} that calls
* {@code this.call(l, u, v)} and returns the result.
*/
default net.mintern.functions.binary.checked.LongObjToDblE rbind(V v) {
return LongObjObjToDblE.rbind(this, v);
}
/**
* Binds {@code (l, u, v)} to {@code f}, returning a new function
* of type {@code () -> double}.
*
* @param the type of argument 2
* @param the type of argument 3
* @param the {@code Exception} type that the operation may throw
* @param f the unbound function
* @param l argument 1
* @param u argument 2
* @param v argument 3
* @return a new function {@code () -> double} that calls
* {@code f.call(l, u, v)} and returns the result.
*/
static net.mintern.functions.nullary.checked.NilToDblE
bind(LongObjObjToDblE f, long l, U u, V v) {
return () -> f.call(l, u, v);
}
/**
* Binds {@code (l, u, v)} to {@code this}, returning a new function
* of type {@code () -> double}.
*
* @param l argument 1
* @param u argument 2
* @param v argument 3
* @return a new function {@code () -> double} that calls
* {@code this.call(l, u, v)} and returns the result.
*/
default net.mintern.functions.nullary.checked.NilToDblE bind(long l, U u, V v) {
return LongObjObjToDblE.bind(this, l, u, v);
}
}