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