All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.infinicast.QuadConsumer Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package io.infinicast;

//
public interface QuadConsumer {

    void accept(T t, U u, W w, X x);

  /*  default QuadConsumer andThen(QuadConsumer after) {
        Objects.requireNonNull(after);

        return (a, b, c, d) -> {
            accept(a, b, c, d);
            after.accept(a, b, c, d);
        };
    }*/
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy