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