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