binary.checked.FloatIntToDblE 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 (float, int) -> double}.
*
* @param the {@code Exception} type that the operation may throw
*/
@FunctionalInterface
public interface FloatIntToDblE {
/**
* Performs this operation.
*
* @param fl argument 1
* @param i argument 2
* @return the result of the operation
* @throws E if the operation cannot be completed
*/
double call(float fl, int i) throws E;
/**
* Binds {@code (fl)} to the beginning of {@code f}, returning a new function
* of type {@code (int) -> double}.
*
* @param the {@code Exception} type that the operation may throw
* @param f the unbound function
* @param fl argument 1
* @return a new function {@code (int i) -> double} that calls
* {@code f.call(fl, i)} and returns the result.
*/
static net.mintern.functions.unary.checked.IntToDblE
bind(FloatIntToDblE f, float fl) {
return (i) -> f.call(fl, i);
}
/**
* Binds {@code (fl)} to the beginning of {@code this}, returning a new function
* of type {@code (int) -> double}.
*
* @param fl argument 1
* @return a new function {@code (int i) -> double} that calls
* {@code this.call(fl, i)} and returns the result.
*/
default net.mintern.functions.unary.checked.IntToDblE bind(float fl) {
return FloatIntToDblE.bind(this, fl);
}
/**
* Binds {@code (i)} to the end of {@code f}, returning a new function
* of type {@code (float) -> double}.
*
* @param the {@code Exception} type that the operation may throw
* @param f the unbound function
* @param i argument 2
* @return a new function {@code (float fl) -> double} that calls
* {@code f.call(fl, i)} and returns the result.
*/
static net.mintern.functions.unary.checked.FloatToDblE
rbind(FloatIntToDblE f, int i) {
return (fl) -> f.call(fl, i);
}
/**
* Binds {@code (i)} to the end of {@code this}, returning a new function
* of type {@code (float) -> double}.
*
* @param i argument 2
* @return a new function {@code (float fl) -> double} that calls
* {@code this.call(fl, i)} and returns the result.
*/
default net.mintern.functions.unary.checked.FloatToDblE rbind(int i) {
return FloatIntToDblE.rbind(this, i);
}
/**
* Binds {@code (fl, i)} to {@code f}, returning a new function
* of type {@code () -> double}.
*
* @param the {@code Exception} type that the operation may throw
* @param f the unbound function
* @param fl argument 1
* @param i argument 2
* @return a new function {@code () -> double} that calls
* {@code f.call(fl, i)} and returns the result.
*/
static net.mintern.functions.nullary.checked.NilToDblE
bind(FloatIntToDblE f, float fl, int i) {
return () -> f.call(fl, i);
}
/**
* Binds {@code (fl, i)} to {@code this}, returning a new function
* of type {@code () -> double}.
*
* @param fl argument 1
* @param i argument 2
* @return a new function {@code () -> double} that calls
* {@code this.call(fl, i)} and returns the result.
*/
default net.mintern.functions.nullary.checked.NilToDblE bind(float fl, int i) {
return FloatIntToDblE.bind(this, fl, i);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy