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