binary.checked.CharDblToNilE Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of functions-binary-extended Show documentation
Show all versions of functions-binary-extended Show documentation
Provides functional interfaces for most two-argument functions
package net.mintern.functions.binary.checked;
/**
* An operation of type {@code (char, double) -> void}.
*
* @param the {@code Exception} type that the operation may throw
*/
@FunctionalInterface
public interface CharDblToNilE {
/**
* Performs this operation.
*
* @param ch argument 1
* @param d argument 2
* @throws E if the operation cannot be completed
*/
void call(char ch, double d) throws E;
/**
* Binds {@code (ch)} to the beginning of {@code f}, returning a new function
* of type {@code (double) -> void}.
*
* @param the {@code Exception} type that the operation may throw
* @param f the unbound function
* @param ch argument 1
* @return a new function {@code (double d) -> void} that calls
* {@code f.call(ch, d)}.
*/
static net.mintern.functions.unary.checked.DblToNilE
bind(CharDblToNilE f, char ch) {
return (d) -> f.call(ch, d);
}
/**
* Binds {@code (ch)} to the beginning of {@code this}, returning a new function
* of type {@code (double) -> void}.
*
* @param ch argument 1
* @return a new function {@code (double d) -> void} that calls
* {@code this.call(ch, d)}.
*/
default net.mintern.functions.unary.checked.DblToNilE bind(char ch) {
return CharDblToNilE.bind(this, ch);
}
/**
* Binds {@code (d)} to the end of {@code f}, returning a new function
* of type {@code (char) -> void}.
*
* @param the {@code Exception} type that the operation may throw
* @param f the unbound function
* @param d argument 2
* @return a new function {@code (char ch) -> void} that calls
* {@code f.call(ch, d)}.
*/
static net.mintern.functions.unary.checked.CharToNilE
rbind(CharDblToNilE f, double d) {
return (ch) -> f.call(ch, d);
}
/**
* Binds {@code (d)} to the end of {@code this}, returning a new function
* of type {@code (char) -> void}.
*
* @param d argument 2
* @return a new function {@code (char ch) -> void} that calls
* {@code this.call(ch, d)}.
*/
default net.mintern.functions.unary.checked.CharToNilE rbind(double d) {
return CharDblToNilE.rbind(this, d);
}
/**
* Binds {@code (ch, d)} to {@code f}, returning a new function
* of type {@code () -> void}.
*
* @param the {@code Exception} type that the operation may throw
* @param f the unbound function
* @param ch argument 1
* @param d argument 2
* @return a new function {@code () -> void} that calls
* {@code f.call(ch, d)}.
*/
static net.mintern.functions.nullary.checked.NilToNilE
bind(CharDblToNilE f, char ch, double d) {
return () -> f.call(ch, d);
}
/**
* Binds {@code (ch, d)} to {@code this}, returning a new function
* of type {@code () -> void}.
*
* @param ch argument 1
* @param d argument 2
* @return a new function {@code () -> void} that calls
* {@code this.call(ch, d)}.
*/
default net.mintern.functions.nullary.checked.NilToNilE bind(char ch, double d) {
return CharDblToNilE.bind(this, ch, d);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy