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

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

The newest version!
package java.util.function;

@FunctionalInterface
public interface BiFunction {

  R apply(T t, U u);

  default  BiFunction andThen(Function after) {
    assert after != null;
    return (T t, U u) -> after.apply(BiFunction.this.apply(t, u));
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy