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