Java.util.function.Function

From NovaOrdis Knowledge Base
Jump to navigation Jump to search

External

Internal

Overview

@FunctionalInterface
public interface Function<T, R> {

    R apply(T t);

    ....
}

Composition Methods

  • andThen()
  • compose()