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