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