ternary.checked.ObjDblLongToObjE 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) -> R}.
*
* @param the type of argument 1
* @param the type of the return value
* @param the {@code Exception} type that the operation may throw
*/
@FunctionalInterface
public interface ObjDblLongToObjE {
/**
* 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
*/
R 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) -> R}.
*
* @param the type of argument 1
* @param the type of the return value
* @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) -> R} that calls
* {@code f.call(t, d, l)} and returns the result.
*/
static net.mintern.functions.binary.checked.DblLongToObjE
bind(ObjDblLongToObjE 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) -> R}.
*
* @param t argument 1
* @return a new function {@code (double d, long l) -> R} that calls
* {@code this.call(t, d, l)} and returns the result.
*/
default net.mintern.functions.binary.checked.DblLongToObjE bind(T t) {
return ObjDblLongToObjE.bind(this, t);
}
/**
* Binds {@code (d, l)} to the end of {@code f}, returning a new function
* of type {@code (T) -> R}.
*
* @param the type of argument 1
* @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 2
* @param l argument 3
* @return a new function {@code (T t) -> R} that calls
* {@code f.call(t, d, l)} and returns the result.
*/
static net.mintern.functions.unary.checked.ObjToObjE
rbind(ObjDblLongToObjE 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) -> R}.
*
* @param d argument 2
* @param l argument 3
* @return a new function {@code (T t) -> R} that calls
* {@code this.call(t, d, l)} and returns the result.
*/
default net.mintern.functions.unary.checked.ObjToObjE rbind(double d, long l) {
return ObjDblLongToObjE.rbind(this, d, l);
}
/**
* Binds {@code (t, d)} to the beginning of {@code f}, returning a new function
* of type {@code (long) -> R}.
*
* @param the type of argument 1
* @param the type of the return value
* @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) -> R} that calls
* {@code f.call(t, d, l)} and returns the result.
*/
static net.mintern.functions.unary.checked.LongToObjE
bind(ObjDblLongToObjE 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) -> R}.
*
* @param t argument 1
* @param d argument 2
* @return a new function {@code (long l) -> R} that calls
* {@code this.call(t, d, l)} and returns the result.
*/
default net.mintern.functions.unary.checked.LongToObjE bind(T t, double d) {
return ObjDblLongToObjE.bind(this, t, d);
}
/**
* Binds {@code (l)} to the end of {@code f}, returning a new function
* of type {@code (T, double) -> R}.
*
* @param the type of argument 1
* @param the type of the return value
* @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) -> R} that calls
* {@code f.call(t, d, l)} and returns the result.
*/
static net.mintern.functions.binary.checked.ObjDblToObjE
rbind(ObjDblLongToObjE 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) -> R}.
*
* @param l argument 3
* @return a new function {@code (T t, double d) -> R} that calls
* {@code this.call(t, d, l)} and returns the result.
*/
default net.mintern.functions.binary.checked.ObjDblToObjE rbind(long l) {
return ObjDblLongToObjE.rbind(this, l);
}
/**
* Binds {@code (t, d, l)} to {@code f}, returning a new function
* of type {@code () -> R}.
*
* @param the type of argument 1
* @param the type of the return value
* @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 () -> R} that calls
* {@code f.call(t, d, l)} and returns the result.
*/
@SuppressWarnings("unchecked") // maven spuriously warns about a type error in this case
static net.mintern.functions.nullary.checked.NilToObjE
bind(ObjDblLongToObjE 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 () -> R}.
*
* @param t argument 1
* @param d argument 2
* @param l argument 3
* @return a new function {@code () -> R} that calls
* {@code this.call(t, d, l)} and returns the result.
*/
default net.mintern.functions.nullary.checked.NilToObjE bind(T t, double d, long l) {
return ObjDblLongToObjE.bind(this, t, d, l);
}
}