Java.util.function.Function: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 20: Line 20:


=Composition Methods=
=Composition Methods=
* andThen()
* compose()

Revision as of 19:24, 26 March 2018

External

Internal

Overview

@FunctionalInterface
public interface Function<T, R> {

    R apply(T t);

    ....
}

Composition Methods

  • andThen()
  • compose()