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