wf.utils.java.functions.QuaConsumer Maven / Gradle / Ivy
package wf.utils.java.functions;
import java.util.Objects;
@FunctionalInterface
public interface QuaConsumer {
void accept(T t, U u, D d, N n);
default QuaConsumer andThen(QuaConsumer super T, ? super U, ? super D, ? super N> after) {
Objects.requireNonNull(after);
return (l, r, d, n) -> {
accept(l, r, d, n);
after.accept(l, r, d, n);
};
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy