ternary.ObjIntObjToInt 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
package net.mintern.functions.ternary;
/**
* An operation of type {@code (T, int, V) -> int}.
*
* @param the type of argument 1
* @param the type of argument 3
*/
@FunctionalInterface
public interface ObjIntObjToInt extends
net.mintern.functions.ternary.checked.ObjIntObjToIntE {
/**
* 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 type of argument 3
* @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.ObjIntObjToIntE#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 ObjIntObjToInt unchecked(
java.util.function.Function super E, RuntimeException> toRuntime,
net.mintern.functions.ternary.checked.ObjIntObjToIntE f) {
return (t, i, v) -> {
try {
return f.call(t, i, v);
} 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 type of argument 3
* @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 ObjIntObjToInt unchecked(
net.mintern.functions.ternary.checked.ObjIntObjToIntE 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 type of argument 3
* @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 ObjIntObjToInt uncheckedIO(
net.mintern.functions.ternary.checked.ObjIntObjToIntE 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, V) -> int}.
*
* @param the type of argument 1
* @param the type of argument 3
* @param f the unbound function
* @param t argument 1
* @return a new function {@code (int i, V v) -> int} that calls
* {@code f.call(t, i, v)} and returns the result.
*/
static net.mintern.functions.binary.IntObjToInt
bind(ObjIntObjToInt f, T t) {
return (i, v) -> f.call(t, i, v);
}
/**
* Binds {@code (t)} to the beginning of {@code this}, returning a new function
* of type {@code (int, V) -> int}.
*
* @param t argument 1
* @return a new function {@code (int i, V v) -> int} that calls
* {@code this.call(t, i, v)} and returns the result.
*/
@Override
default net.mintern.functions.binary.IntObjToInt bind(T t) {
return ObjIntObjToInt.bind(this, t);
}
/**
* Binds {@code (i, v)} to the end of {@code f}, returning a new function
* of type {@code (T) -> int}.
*
* @param the type of argument 1
* @param the type of argument 3
* @param f the unbound function
* @param i argument 2
* @param v argument 3
* @return a new function {@code (T t) -> int} that calls
* {@code f.call(t, i, v)} and returns the result.
*/
static net.mintern.functions.unary.ObjToInt
rbind(ObjIntObjToInt f, int i, V v) {
return (t) -> f.call(t, i, v);
}
/**
* Binds {@code (i, v)} to the end of {@code this}, returning a new function
* of type {@code (T) -> int}.
*
* @param i argument 2
* @param v argument 3
* @return a new function {@code (T t) -> int} that calls
* {@code this.call(t, i, v)} and returns the result.
*/
@Override
default net.mintern.functions.unary.ObjToInt rbind(int i, V v) {
return ObjIntObjToInt.rbind(this, i, v);
}
/**
* Binds {@code (t, i)} to the beginning of {@code f}, returning a new function
* of type {@code (V) -> int}.
*
* @param the type of argument 1
* @param the type of argument 3
* @param f the unbound function
* @param t argument 1
* @param i argument 2
* @return a new function {@code (V v) -> int} that calls
* {@code f.call(t, i, v)} and returns the result.
*/
static net.mintern.functions.unary.ObjToInt
bind(ObjIntObjToInt f, T t, int i) {
return (v) -> f.call(t, i, v);
}
/**
* Binds {@code (t, i)} to the beginning of {@code this}, returning a new function
* of type {@code (V) -> int}.
*
* @param t argument 1
* @param i argument 2
* @return a new function {@code (V v) -> int} that calls
* {@code this.call(t, i, v)} and returns the result.
*/
@Override
default net.mintern.functions.unary.ObjToInt bind(T t, int i) {
return ObjIntObjToInt.bind(this, t, i);
}
/**
* Binds {@code (v)} to the end of {@code f}, returning a new function
* of type {@code (T, int) -> int}.
*
* @param the type of argument 1
* @param the type of argument 3
* @param f the unbound function
* @param v argument 3
* @return a new function {@code (T t, int i) -> int} that calls
* {@code f.call(t, i, v)} and returns the result.
*/
static net.mintern.functions.binary.ObjIntToInt
rbind(ObjIntObjToInt f, V v) {
return (t, i) -> f.call(t, i, v);
}
/**
* Binds {@code (v)} to the end of {@code this}, returning a new function
* of type {@code (T, int) -> int}.
*
* @param v argument 3
* @return a new function {@code (T t, int i) -> int} that calls
* {@code this.call(t, i, v)} and returns the result.
*/
@Override
default net.mintern.functions.binary.ObjIntToInt rbind(V v) {
return ObjIntObjToInt.rbind(this, v);
}
/**
* Binds {@code (t, i, v)} to {@code f}, returning a new function
* of type {@code () -> int}.
*
* @param the type of argument 1
* @param the type of argument 3
* @param f the unbound function
* @param t argument 1
* @param i argument 2
* @param v argument 3
* @return a new function {@code () -> int} that calls
* {@code f.call(t, i, v)} and returns the result.
*/
static net.mintern.functions.nullary.NilToInt
bind(ObjIntObjToInt f, T t, int i, V v) {
return () -> f.call(t, i, v);
}
/**
* Binds {@code (t, i, v)} to {@code this}, returning a new function
* of type {@code () -> int}.
*
* @param t argument 1
* @param i argument 2
* @param v argument 3
* @return a new function {@code () -> int} that calls
* {@code this.call(t, i, v)} and returns the result.
*/
@Override
default net.mintern.functions.nullary.NilToInt bind(T t, int i, V v) {
return ObjIntObjToInt.bind(this, t, i, v);
}
}