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