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

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

The newest version!
package java.util.function;

@FunctionalInterface
public interface IntConsumer {

  void accept(int value);

  default IntConsumer andThen(IntConsumer after) {
    assert after != null;
    return (int t) -> {
      IntConsumer.this.accept(t);
      after.accept(t);
    };
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy