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