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