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