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