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