/* __ __ __ __ __ ___ * \ \ / / \ \ / / __/ * \ \/ / /\ \ \/ / / * \____/__/ \__\____/__/.ɪᴏ * ᶜᵒᵖʸʳᶦᵍʰᵗ ᵇʸ ᵛᵃᵛʳ ⁻ ˡᶦᶜᵉⁿˢᵉᵈ ᵘⁿᵈᵉʳ ᵗʰᵉ ᵃᵖᵃᶜʰᵉ ˡᶦᶜᵉⁿˢᵉ ᵛᵉʳˢᶦᵒⁿ ᵗʷᵒ ᵈᵒᵗ ᶻᵉʳᵒ */ package io.vavr; /*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*\ G E N E R A T O R C R A F T E D \*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/ import static io.vavr.Function5Module.sneakyThrow; import io.vavr.control.Option; import io.vavr.control.Try; import java.util.HashMap; import java.util.Map; import java.util.Objects; import java.util.function.Function; /** * Represents a function with 5 arguments. * * @param <T1> argument 1 of the function * @param <T2> argument 2 of the function * @param <T3> argument 3 of the function * @param <T4> argument 4 of the function * @param <T5> argument 5 of the function * @param <R> return type of the function * @author Daniel Dietrich */ @FunctionalInterface public interface Function5<T1, T2, T3, T4, T5, R> extends Lambda<R> { /** * The <a href="https://docs.oracle.com/javase/8/docs/api/index.html">serial version uid</a>. */ long serialVersionUID = 1L; /** * Creates a {@code Function5} based on * <ul> * <li><a href="https://docs.oracle.com/javase/tutorial/java/javaOO/methodreferences.html">method reference</a></li> * <li><a href="https://docs.oracle.com/javase/tutorial/java/javaOO/lambdaexpressions.html#syntax">lambda expression</a></li> * </ul> * * Examples (w.l.o.g. referring to Function1): * <pre><code>// using a lambda expression * Function1<Integer, Integer> add1 = Function1.of(i -> i + 1); * * // using a method reference (, e.g. Integer method(Integer i) { return i + 1; }) * Function1<Integer, Integer> add2 = Function1.of(this::method); * * // using a lambda reference * Function1<Integer, Integer> add3 = Function1.of(add1::apply); * </code></pre> * <p> * <strong>Caution:</strong> Reflection loses type information of lambda references. * <pre><code>// type of a lambda expression * Type<?, ?> type1 = add1.getType(); // (Integer) -> Integer * * // type of a method reference * Type<?, ?> type2 = add2.getType(); // (Integer) -> Integer * * // type of a lambda reference * Type<?, ?> type3 = add3.getType(); // (Object) -> Object * </code></pre> * * @param methodReference (typically) a method reference, e.g. {@code Type::method} * @param <R> return type * @param <T1> 1st argument * @param <T2> 2nd argument * @param <T3> 3rd argument * @param <T4> 4th argument * @param <T5> 5th argument * @return a {@code Function5} */ static <T1, T2, T3, T4, T5, R> Function5<T1, T2, T3, T4, T5, R> of(Function5<T1, T2, T3, T4, T5, R> methodReference) { return methodReference; } /** * Lifts the given {@code partialFunction} into a total function that returns an {@code Option} result. * * @param partialFunction a function that is not defined for all values of the domain (e.g. by throwing) * @param <R> return type * @param <T1> 1st argument * @param <T2> 2nd argument * @param <T3> 3rd argument * @param <T4> 4th argument * @param <T5> 5th argument * @return a function that applies arguments to the given {@code partialFunction} and returns {@code Some(result)} * if the function is defined for the given arguments, and {@code None} otherwise. */ @SuppressWarnings("RedundantTypeArguments") static <T1, T2, T3, T4, T5, R> Function5<T1, T2, T3, T4, T5, Option<R>> lift(Function5<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? extends R> partialFunction) { return (t1, t2, t3, t4, t5) -> Try.<R>of(() -> partialFunction.apply(t1, t2, t3, t4, t5)).toOption(); } /** * Lifts the given {@code partialFunction} into a total function that returns an {@code Try} result. * * @param partialFunction a function that is not defined for all values of the domain (e.g. by throwing) * @param <R> return type * @param <T1> 1st argument * @param <T2> 2nd argument * @param <T3> 3rd argument * @param <T4> 4th argument * @param <T5> 5th argument * @return a function that applies arguments to the given {@code partialFunction} and returns {@code Success(result)} * if the function is defined for the given arguments, and {@code Failure(throwable)} otherwise. */ static <T1, T2, T3, T4, T5, R> Function5<T1, T2, T3, T4, T5, Try<R>> liftTry(Function5<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? extends R> partialFunction) { return (t1, t2, t3, t4, t5) -> Try.of(() -> partialFunction.apply(t1, t2, t3, t4, t5)); } /** * Narrows the given {@code Function5<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? extends R>} to {@code Function5<T1, T2, T3, T4, T5, R>} * * @param f A {@code Function5} * @param <R> return type * @param <T1> 1st argument * @param <T2> 2nd argument * @param <T3> 3rd argument * @param <T4> 4th argument * @param <T5> 5th argument * @return the given {@code f} instance as narrowed type {@code Function5<T1, T2, T3, T4, T5, R>} */ @SuppressWarnings("unchecked") static <T1, T2, T3, T4, T5, R> Function5<T1, T2, T3, T4, T5, R> narrow(Function5<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? extends R> f) { return (Function5<T1, T2, T3, T4, T5, R>) f; } /** * Applies this function to 5 arguments and returns the result. * * @param t1 argument 1 * @param t2 argument 2 * @param t3 argument 3 * @param t4 argument 4 * @param t5 argument 5 * @return the result of function application * */ R apply(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5); /** * Applies this function partially to one argument. * * @param t1 argument 1 * @return a partial application of this function */ default Function4<T2, T3, T4, T5, R> apply(T1 t1) { return (T2 t2, T3 t3, T4 t4, T5 t5) -> apply(t1, t2, t3, t4, t5); } /** * Applies this function partially to two arguments. * * @param t1 argument 1 * @param t2 argument 2 * @return a partial application of this function */ default Function3<T3, T4, T5, R> apply(T1 t1, T2 t2) { return (T3 t3, T4 t4, T5 t5) -> apply(t1, t2, t3, t4, t5); } /** * Applies this function partially to three arguments. * * @param t1 argument 1 * @param t2 argument 2 * @param t3 argument 3 * @return a partial application of this function */ default Function2<T4, T5, R> apply(T1 t1, T2 t2, T3 t3) { return (T4 t4, T5 t5) -> apply(t1, t2, t3, t4, t5); } /** * Applies this function partially to 4 arguments. * * @param t1 argument 1 * @param t2 argument 2 * @param t3 argument 3 * @param t4 argument 4 * @return a partial application of this function */ default Function1<T5, R> apply(T1 t1, T2 t2, T3 t3, T4 t4) { return (T5 t5) -> apply(t1, t2, t3, t4, t5); } @Override default int arity() { return 5; } /** * Returns a function that always returns the constant * value that you give in parameter. * * @param <T1> generic parameter type 1 of the resulting function * @param <T2> generic parameter type 2 of the resulting function * @param <T3> generic parameter type 3 of the resulting function * @param <T4> generic parameter type 4 of the resulting function * @param <T5> generic parameter type 5 of the resulting function * @param <R> the result type * @param value the value to be returned * @return a function always returning the given value */ static <T1, T2, T3, T4, T5, R> Function5<T1, T2, T3, T4, T5, R> constant(R value) { return (t1, t2, t3, t4, t5) -> value; } @Override default Function1<T1, Function1<T2, Function1<T3, Function1<T4, Function1<T5, R>>>>> curried() { return t1 -> t2 -> t3 -> t4 -> t5 -> apply(t1, t2, t3, t4, t5); } @Override default Function1<Tuple5<T1, T2, T3, T4, T5>, R> tupled() { return t -> apply(t._1, t._2, t._3, t._4, t._5); } @Override default Function5<T5, T4, T3, T2, T1, R> reversed() { return (t5, t4, t3, t2, t1) -> apply(t1, t2, t3, t4, t5); } @Override default Function5<T1, T2, T3, T4, T5, R> memoized() { if (isMemoized()) { return this; } else { final Map<Tuple5<T1, T2, T3, T4, T5>, R> cache = new HashMap<>(); return (Function5<T1, T2, T3, T4, T5, R> & Memoized) (t1, t2, t3, t4, t5) -> Memoized.of(cache, Tuple.of(t1, t2, t3, t4, t5), tupled()); } } /** * Returns a composed function that first applies this Function5 to the given argument and then applies * {@linkplain Function} {@code after} to the result. * * @param <V> return type of after * @param after the function applied after this * @return a function composed of this and after * @throws NullPointerException if after is null */ default <V> Function5<T1, T2, T3, T4, T5, V> andThen(Function<? super R, ? extends V> after) { Objects.requireNonNull(after, "after is null"); return (t1, t2, t3, t4, t5) -> after.apply(apply(t1, t2, t3, t4, t5)); } } interface Function5Module { // DEV-NOTE: we do not plan to expose this as public API @SuppressWarnings("unchecked") static <T extends Throwable, R> R sneakyThrow(Throwable t) throws T { throw (T) t; } }