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