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

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

The newest version!
package java.util.function;

@FunctionalInterface
public interface LongConsumer {

  void accept(long value);

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy