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