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