ternary.checked.ObjLongIntToNilE 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 (T, long, int) -> void}.
*
* @param the type of argument 1
* @param the {@code Exception} type that the operation may throw
*/
@FunctionalInterface
public interface ObjLongIntToNilE {
/**
* Performs this operation.
*
* @param t argument 1
* @param l argument 2
* @param i argument 3
* @throws E if the operation cannot be completed
*/
void call(T t, long l, int i) throws E;
/**
* Binds {@code (t)} to the beginning of {@code f}, returning a new function
* of type {@code (long, int) -> void}.
*
* @param the type of argument 1
* @param the {@code Exception} type that the operation may throw
* @param f the unbound function
* @param t argument 1
* @return a new function {@code (long l, int i) -> void} that calls
* {@code f.call(t, l, i)}.
*/
static net.mintern.functions.binary.checked.LongIntToNilE
bind(ObjLongIntToNilE f, T t) {
return (l, i) -> f.call(t, l, i);
}
/**
* Binds {@code (t)} to the beginning of {@code this}, returning a new function
* of type {@code (long, int) -> void}.
*
* @param t argument 1
* @return a new function {@code (long l, int i) -> void} that calls
* {@code this.call(t, l, i)}.
*/
default net.mintern.functions.binary.checked.LongIntToNilE bind(T t) {
return ObjLongIntToNilE.bind(this, t);
}
/**
* Binds {@code (l, i)} to the end of {@code f}, returning a new function
* of type {@code (T) -> void}.
*
* @param the type of argument 1
* @param the {@code Exception} type that the operation may throw
* @param f the unbound function
* @param l argument 2
* @param i argument 3
* @return a new function {@code (T t) -> void} that calls
* {@code f.call(t, l, i)}.
*/
static net.mintern.functions.unary.checked.ObjToNilE
rbind(ObjLongIntToNilE f, long l, int i) {
return (t) -> f.call(t, l, i);
}
/**
* Binds {@code (l, i)} to the end of {@code this}, returning a new function
* of type {@code (T) -> void}.
*
* @param l argument 2
* @param i argument 3
* @return a new function {@code (T t) -> void} that calls
* {@code this.call(t, l, i)}.
*/
default net.mintern.functions.unary.checked.ObjToNilE rbind(long l, int i) {
return ObjLongIntToNilE.rbind(this, l, i);
}
/**
* Binds {@code (t, l)} to the beginning of {@code f}, returning a new function
* of type {@code (int) -> void}.
*
* @param the type of argument 1
* @param the {@code Exception} type that the operation may throw
* @param f the unbound function
* @param t argument 1
* @param l argument 2
* @return a new function {@code (int i) -> void} that calls
* {@code f.call(t, l, i)}.
*/
static net.mintern.functions.unary.checked.IntToNilE
bind(ObjLongIntToNilE f, T t, long l) {
return (i) -> f.call(t, l, i);
}
/**
* Binds {@code (t, l)} to the beginning of {@code this}, returning a new function
* of type {@code (int) -> void}.
*
* @param t argument 1
* @param l argument 2
* @return a new function {@code (int i) -> void} that calls
* {@code this.call(t, l, i)}.
*/
default net.mintern.functions.unary.checked.IntToNilE bind(T t, long l) {
return ObjLongIntToNilE.bind(this, t, l);
}
/**
* Binds {@code (i)} to the end of {@code f}, returning a new function
* of type {@code (T, long) -> void}.
*
* @param the type of argument 1
* @param the {@code Exception} type that the operation may throw
* @param f the unbound function
* @param i argument 3
* @return a new function {@code (T t, long l) -> void} that calls
* {@code f.call(t, l, i)}.
*/
static net.mintern.functions.binary.checked.ObjLongToNilE
rbind(ObjLongIntToNilE f, int i) {
return (t, l) -> f.call(t, l, i);
}
/**
* Binds {@code (i)} to the end of {@code this}, returning a new function
* of type {@code (T, long) -> void}.
*
* @param i argument 3
* @return a new function {@code (T t, long l) -> void} that calls
* {@code this.call(t, l, i)}.
*/
default net.mintern.functions.binary.checked.ObjLongToNilE rbind(int i) {
return ObjLongIntToNilE.rbind(this, i);
}
/**
* Binds {@code (t, l, i)} to {@code f}, returning a new function
* of type {@code () -> void}.
*
* @param the type of argument 1
* @param the {@code Exception} type that the operation may throw
* @param f the unbound function
* @param t argument 1
* @param l argument 2
* @param i argument 3
* @return a new function {@code () -> void} that calls
* {@code f.call(t, l, i)}.
*/
static net.mintern.functions.nullary.checked.NilToNilE
bind(ObjLongIntToNilE f, T t, long l, int i) {
return () -> f.call(t, l, i);
}
/**
* Binds {@code (t, l, i)} to {@code this}, returning a new function
* of type {@code () -> void}.
*
* @param t argument 1
* @param l argument 2
* @param i argument 3
* @return a new function {@code () -> void} that calls
* {@code this.call(t, l, i)}.
*/
default net.mintern.functions.nullary.checked.NilToNilE bind(T t, long l, int i) {
return ObjLongIntToNilE.bind(this, t, l, i);
}
}