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