net.mintern.functions.ternary.ObjIntLongToDbl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of functions-ternary-core Show documentation
Show all versions of functions-ternary-core Show documentation
Provides functional interfaces for the most commonly used two-argument functions
The newest version!
package net.mintern.functions.ternary;
/**
* An operation of type {@code (T, int, long) -> double}.
*
* @param the type of the argument
*/
@FunctionalInterface
public interface ObjIntLongToDbl extends
net.mintern.functions.ternary.checked.ObjIntLongToDblE {
/**
* Returns a wrapped version of {@code f} that uses {@code toRuntime} to convert any checked
* {@code Exception} to a {@code RuntimeException}.
*
* @param the type of argument 1
* @param the {@code Exception} type that the operation may throw
* @param toRuntime if a checked exception is thrown from
* {@link net.mintern.functions.ternary.checked.ObjIntLongToDblE#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 ObjIntLongToDbl unchecked(
java.util.function.Function super E, RuntimeException> toRuntime,
net.mintern.functions.ternary.checked.ObjIntLongToDblE f) {
return (t, i, l) -> {
try {
return f.call(t, i, l);
} 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 type of argument 1
* @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 ObjIntLongToDbl unchecked(
net.mintern.functions.ternary.checked.ObjIntLongToDblE 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 type of argument 1
* @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 ObjIntLongToDbl uncheckedIO(
net.mintern.functions.ternary.checked.ObjIntLongToDblE f) {
return unchecked(java.io.UncheckedIOException::new, f);
}
/**
* Binds {@code (t)} to the beginning of {@code f}, returning a new function
* of type {@code (int, long) -> double}.
*
* @param the type of the argument
* @param f the unbound function
* @param t argument 1
* @return a new function {@code (int i, long l) -> double} that calls
* {@code f.call(t, i, l)} and returns the result.
*/
static net.mintern.functions.binary.IntLongToDbl
bind(ObjIntLongToDbl f, T t) {
return (i, l) -> f.call(t, i, l);
}
/**
* Binds {@code (t)} to the beginning of {@code this}, returning a new function
* of type {@code (int, long) -> double}.
*
* @param t argument 1
* @return a new function {@code (int i, long l) -> double} that calls
* {@code this.call(t, i, l)} and returns the result.
*/
@Override
default net.mintern.functions.binary.IntLongToDbl bind(T t) {
return ObjIntLongToDbl.bind(this, t);
}
/**
* Binds {@code (i, l)} to the end of {@code f}, returning a new function
* of type {@code (T) -> double}.
*
* @param the type of the argument
* @param f the unbound function
* @param i argument 2
* @param l argument 3
* @return a new function {@code (T t) -> double} that calls
* {@code f.call(t, i, l)} and returns the result.
*/
static net.mintern.functions.unary.ObjToDbl
rbind(ObjIntLongToDbl f, int i, long l) {
return (t) -> f.call(t, i, l);
}
/**
* Binds {@code (i, l)} to the end of {@code this}, returning a new function
* of type {@code (T) -> double}.
*
* @param i argument 2
* @param l argument 3
* @return a new function {@code (T t) -> double} that calls
* {@code this.call(t, i, l)} and returns the result.
*/
@Override
default net.mintern.functions.unary.ObjToDbl rbind(int i, long l) {
return ObjIntLongToDbl.rbind(this, i, l);
}
/**
* Binds {@code (t, i)} to the beginning of {@code f}, returning a new function
* of type {@code (long) -> double}.
*
* @param the type of the argument
* @param f the unbound function
* @param t argument 1
* @param i argument 2
* @return a new function {@code (long l) -> double} that calls
* {@code f.call(t, i, l)} and returns the result.
*/
static net.mintern.functions.unary.LongToDbl
bind(ObjIntLongToDbl f, T t, int i) {
return (l) -> f.call(t, i, l);
}
/**
* Binds {@code (t, i)} to the beginning of {@code this}, returning a new function
* of type {@code (long) -> double}.
*
* @param t argument 1
* @param i argument 2
* @return a new function {@code (long l) -> double} that calls
* {@code this.call(t, i, l)} and returns the result.
*/
@Override
default net.mintern.functions.unary.LongToDbl bind(T t, int i) {
return ObjIntLongToDbl.bind(this, t, i);
}
/**
* Binds {@code (l)} to the end of {@code f}, returning a new function
* of type {@code (T, int) -> double}.
*
* @param the type of the argument
* @param f the unbound function
* @param l argument 3
* @return a new function {@code (T t, int i) -> double} that calls
* {@code f.call(t, i, l)} and returns the result.
*/
static net.mintern.functions.binary.ObjIntToDbl
rbind(ObjIntLongToDbl f, long l) {
return (t, i) -> f.call(t, i, l);
}
/**
* Binds {@code (l)} to the end of {@code this}, returning a new function
* of type {@code (T, int) -> double}.
*
* @param l argument 3
* @return a new function {@code (T t, int i) -> double} that calls
* {@code this.call(t, i, l)} and returns the result.
*/
@Override
default net.mintern.functions.binary.ObjIntToDbl rbind(long l) {
return ObjIntLongToDbl.rbind(this, l);
}
/**
* Binds {@code (t, i, l)} to {@code f}, returning a new function
* of type {@code () -> double}.
*
* @param the type of the argument
* @param f the unbound function
* @param t argument 1
* @param i argument 2
* @param l argument 3
* @return a new function {@code () -> double} that calls
* {@code f.call(t, i, l)} and returns the result.
*/
static net.mintern.functions.nullary.NilToDbl
bind(ObjIntLongToDbl f, T t, int i, long l) {
return () -> f.call(t, i, l);
}
/**
* Binds {@code (t, i, l)} to {@code this}, returning a new function
* of type {@code () -> double}.
*
* @param t argument 1
* @param i argument 2
* @param l argument 3
* @return a new function {@code () -> double} that calls
* {@code this.call(t, i, l)} and returns the result.
*/
@Override
default net.mintern.functions.nullary.NilToDbl bind(T t, int i, long l) {
return ObjIntLongToDbl.bind(this, t, i, l);
}
}