unary.FloatToShort Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of functions-unary-all Show documentation
Show all versions of functions-unary-all Show documentation
Provides functional interfaces for all two-argument functions
package net.mintern.functions.unary;
/**
* An operation of type {@code (float) -> short}.
*
*/
@FunctionalInterface
public interface FloatToShort extends
net.mintern.functions.unary.checked.FloatToShortE {
/**
* 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.unary.checked.FloatToShortE#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 FloatToShort unchecked(
java.util.function.Function super E, RuntimeException> toRuntime,
net.mintern.functions.unary.checked.FloatToShortE f) {
return (fl) -> {
try {
return f.call(fl);
} 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 FloatToShort unchecked(
net.mintern.functions.unary.checked.FloatToShortE 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 FloatToShort uncheckedIO(
net.mintern.functions.unary.checked.FloatToShortE f) {
return unchecked(java.io.UncheckedIOException::new, f);
}
/**
* Binds {@code (fl)} to {@code f}, returning a new function
* of type {@code () -> short}.
*
* @param f the unbound function
* @param fl the argument
* @return a new function {@code () -> short} that calls
* {@code f.call(fl)} and returns the result.
*/
static net.mintern.functions.nullary.NilToShort
bind(FloatToShort f, float fl) {
return () -> f.call(fl);
}
/**
* Binds {@code (fl)} to {@code this}, returning a new function
* of type {@code () -> short}.
*
* @param fl the argument
* @return a new function {@code () -> short} that calls
* {@code this.call(fl)} and returns the result.
*/
@Override
default net.mintern.functions.nullary.NilToShort bind(float fl) {
return FloatToShort.bind(this, fl);
}
}