com.linkedin.parseq.function.Function4 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of parseq Show documentation
Show all versions of parseq Show documentation
Uploads all artifacts belonging to configuration ':parseq:archives'
package com.linkedin.parseq.function;
import java.util.Objects;
import com.linkedin.parseq.function.Function1;
@FunctionalInterface
public interface Function4 {
R apply(T1 t1, T2 t2, T3 t3, T4 t4) throws Exception;
default Function4 andThen(Function1 super R, ? extends V> f) {
Objects.requireNonNull(f);
return (T1 t1, T2 t2, T3 t3, T4 t4) ->
f.apply(apply(t1, t2, t3, t4));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy