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