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

com.google.gwt.emul.java.util.function.BiConsumer Maven / Gradle / Ivy

The newest version!
package java.util.function;

@FunctionalInterface
public interface BiConsumer {

  void accept(O o, T t);

  default BiConsumer andThen(BiConsumer after) {
    return (l, r) -> {
      BiConsumer.this.accept(l, r);
      after.accept(l, r);
    };
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy