net.mintern.functions.ternary.DblIntLongToObj 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 (double, int, long) -> R}.
*
* @param the type of the return value
*/
@FunctionalInterface
public interface DblIntLongToObj extends
net.mintern.functions.ternary.checked.DblIntLongToObjE {
/**
* 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 the return value
* @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.DblIntLongToObjE#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 DblIntLongToObj unchecked(
java.util.function.Function super E, RuntimeException> toRuntime,
net.mintern.functions.ternary.checked.DblIntLongToObjE f) {
return (d, i, l) -> {
try {
return f.call(d, 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 the return value
* @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 DblIntLongToObj unchecked(
net.mintern.functions.ternary.checked.DblIntLongToObjE 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 the return value
* @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 DblIntLongToObj uncheckedIO(
net.mintern.functions.ternary.checked.DblIntLongToObjE f) {
return unchecked(java.io.UncheckedIOException::new, f);
}
/**
* Binds {@code (d)} to the beginning of {@code f}, returning a new function
* of type {@code (int, long) -> R}.
*
* @param the type of the return value
* @param f the unbound function
* @param d argument 1
* @return a new function {@code (int i, long l) -> R} that calls
* {@code f.call(d, i, l)} and returns the result.
*/
static net.mintern.functions.binary.IntLongToObj
bind(DblIntLongToObj f, double d) {
return (i, l) -> f.call(d, i, l);
}
/**
* Binds {@code (d)} to the beginning of {@code this}, returning a new function
* of type {@code (int, long) -> R}.
*
* @param d argument 1
* @return a new function {@code (int i, long l) -> R} that calls
* {@code this.call(d, i, l)} and returns the result.
*/
@Override
default net.mintern.functions.binary.IntLongToObj bind(double d) {
return DblIntLongToObj.bind(this, d);
}
/**
* Binds {@code (i, l)} to the end of {@code f}, returning a new function
* of type {@code (double) -> R}.
*
* @param the type of the return value
* @param f the unbound function
* @param i argument 2
* @param l argument 3
* @return a new function {@code (double d) -> R} that calls
* {@code f.call(d, i, l)} and returns the result.
*/
static net.mintern.functions.unary.DblToObj
rbind(DblIntLongToObj f, int i, long l) {
return (d) -> f.call(d, i, l);
}
/**
* Binds {@code (i, l)} to the end of {@code this}, returning a new function
* of type {@code (double) -> R}.
*
* @param i argument 2
* @param l argument 3
* @return a new function {@code (double d) -> R} that calls
* {@code this.call(d, i, l)} and returns the result.
*/
@Override
default net.mintern.functions.unary.DblToObj rbind(int i, long l) {
return DblIntLongToObj.rbind(this, i, l);
}
/**
* Binds {@code (d, i)} to the beginning of {@code f}, returning a new function
* of type {@code (long) -> R}.
*
* @param the type of the return value
* @param f the unbound function
* @param d argument 1
* @param i argument 2
* @return a new function {@code (long l) -> R} that calls
* {@code f.call(d, i, l)} and returns the result.
*/
static net.mintern.functions.unary.LongToObj
bind(DblIntLongToObj f, double d, int i) {
return (l) -> f.call(d, i, l);
}
/**
* Binds {@code (d, i)} to the beginning of {@code this}, returning a new function
* of type {@code (long) -> R}.
*
* @param d argument 1
* @param i argument 2
* @return a new function {@code (long l) -> R} that calls
* {@code this.call(d, i, l)} and returns the result.
*/
@Override
default net.mintern.functions.unary.LongToObj bind(double d, int i) {
return DblIntLongToObj.bind(this, d, i);
}
/**
* Binds {@code (l)} to the end of {@code f}, returning a new function
* of type {@code (double, int) -> R}.
*
* @param the type of the return value
* @param f the unbound function
* @param l argument 3
* @return a new function {@code (double d, int i) -> R} that calls
* {@code f.call(d, i, l)} and returns the result.
*/
static net.mintern.functions.binary.DblIntToObj
rbind(DblIntLongToObj f, long l) {
return (d, i) -> f.call(d, i, l);
}
/**
* Binds {@code (l)} to the end of {@code this}, returning a new function
* of type {@code (double, int) -> R}.
*
* @param l argument 3
* @return a new function {@code (double d, int i) -> R} that calls
* {@code this.call(d, i, l)} and returns the result.
*/
@Override
default net.mintern.functions.binary.DblIntToObj rbind(long l) {
return DblIntLongToObj.rbind(this, l);
}
/**
* Binds {@code (d, i, l)} to {@code f}, returning a new function
* of type {@code () -> R}.
*
* @param the type of the return value
* @param f the unbound function
* @param d argument 1
* @param i argument 2
* @param l argument 3
* @return a new function {@code () -> R} that calls
* {@code f.call(d, i, l)} and returns the result.
*/
static net.mintern.functions.nullary.NilToObj
bind(DblIntLongToObj f, double d, int i, long l) {
return () -> f.call(d, i, l);
}
/**
* Binds {@code (d, i, l)} to {@code this}, returning a new function
* of type {@code () -> R}.
*
* @param d argument 1
* @param i argument 2
* @param l argument 3
* @return a new function {@code () -> R} that calls
* {@code this.call(d, i, l)} and returns the result.
*/
@Override
default net.mintern.functions.nullary.NilToObj bind(double d, int i, long l) {
return DblIntLongToObj.bind(this, d, i, l);
}
}