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