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