binary.FloatFloatToDbl 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;
/**
* An operation of type {@code (float, float) -> double}.
*
*/
@FunctionalInterface
public interface FloatFloatToDbl extends
net.mintern.functions.binary.checked.FloatFloatToDblE {
/**
* Returns a wrapped version of {@code f} that uses {@code toRuntime} to convert any checked
* {@code Exception} to a {@code RuntimeException}.
*
* @param the {@code Exception} type that the operation may throw
* @param toRuntime if a checked exception is thrown from
* {@link net.mintern.functions.binary.checked.FloatFloatToDblE#call}, then this function
* is called in in order to convert it to a {@code RuntimeException}
* @param f the operation to wrap
* @return a wrapped version of {@code f} that does not throw checked exceptions
*/
@SuppressWarnings("unchecked")
static FloatFloatToDbl unchecked(
java.util.function.Function super E, RuntimeException> toRuntime,
net.mintern.functions.binary.checked.FloatFloatToDblE f) {
return (fl1, fl2) -> {
try {
return f.call(fl1, fl2);
} catch (RuntimeException e) {
throw e;
} catch (Exception e) {
throw toRuntime.apply((E) e);
}
};
}
/**
* Returns a wrapped version of {@code f} that wraps any checked {@code Exception} with a
* {@code RuntimeException}.
*
* @param the {@code Exception} type that the operation may throw
* @param f the operation to wrap
* @return a wrapped version of {@code f} that does not throw checked exceptions
*/
static FloatFloatToDbl unchecked(
net.mintern.functions.binary.checked.FloatFloatToDblE f) {
return unchecked(RuntimeException::new, f);
}
/**
* Returns a wrapped version of {@code f} that wraps any {@code IOException} with an
* {@link java.io.UncheckedIOException}.
*
* @param the {@code Exception} type that the operation may throw
* @param f the operation to wrap
* @return a wrapped version of {@code f} that throws {@code UncheckedIOException} instead of
* {@code IOException}
*/
static FloatFloatToDbl uncheckedIO(
net.mintern.functions.binary.checked.FloatFloatToDblE f) {
return unchecked(java.io.UncheckedIOException::new, f);
}
/**
* Binds {@code (fl1)} to the beginning of {@code f}, returning a new function
* of type {@code (float) -> double}.
*
* @param f the unbound function
* @param fl1 argument 1
* @return a new function {@code (float fl2) -> double} that calls
* {@code f.call(fl1, fl2)} and returns the result.
*/
static net.mintern.functions.unary.FloatToDbl
bind(FloatFloatToDbl f, float fl1) {
return (fl2) -> f.call(fl1, fl2);
}
/**
* Binds {@code (fl1)} to the beginning of {@code this}, returning a new function
* of type {@code (float) -> double}.
*
* @param fl1 argument 1
* @return a new function {@code (float fl2) -> double} that calls
* {@code this.call(fl1, fl2)} and returns the result.
*/
@Override
default net.mintern.functions.unary.FloatToDbl bind(float fl1) {
return FloatFloatToDbl.bind(this, fl1);
}
/**
* Binds {@code (fl2)} to the end of {@code f}, returning a new function
* of type {@code (float) -> double}.
*
* @param f the unbound function
* @param fl2 argument 2
* @return a new function {@code (float fl1) -> double} that calls
* {@code f.call(fl1, fl2)} and returns the result.
*/
static net.mintern.functions.unary.FloatToDbl
rbind(FloatFloatToDbl f, float fl2) {
return (fl1) -> f.call(fl1, fl2);
}
/**
* Binds {@code (fl2)} to the end of {@code this}, returning a new function
* of type {@code (float) -> double}.
*
* @param fl2 argument 2
* @return a new function {@code (float fl1) -> double} that calls
* {@code this.call(fl1, fl2)} and returns the result.
*/
@Override
default net.mintern.functions.unary.FloatToDbl rbind(float fl2) {
return FloatFloatToDbl.rbind(this, fl2);
}
/**
* Binds {@code (fl1, fl2)} to {@code f}, returning a new function
* of type {@code () -> double}.
*
* @param f the unbound function
* @param fl1 argument 1
* @param fl2 argument 2
* @return a new function {@code () -> double} that calls
* {@code f.call(fl1, fl2)} and returns the result.
*/
static net.mintern.functions.nullary.NilToDbl
bind(FloatFloatToDbl f, float fl1, float fl2) {
return () -> f.call(fl1, fl2);
}
/**
* Binds {@code (fl1, fl2)} to {@code this}, returning a new function
* of type {@code () -> double}.
*
* @param fl1 argument 1
* @param fl2 argument 2
* @return a new function {@code () -> double} that calls
* {@code this.call(fl1, fl2)} and returns the result.
*/
@Override
default net.mintern.functions.nullary.NilToDbl bind(float fl1, float fl2) {
return FloatFloatToDbl.bind(this, fl1, fl2);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy