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