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