Java.util.function.Function: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 21: Line 21:
=Composition Methods=
=Composition Methods=


* andThen()
* [https://docs.oracle.com/javase/8/docs/api/java/util/function/Function.html#andThen-java.util.function.Function- andThen(Function)]
* compose()
* compose()

Revision as of 19:24, 26 March 2018

External

Internal

Overview

@FunctionalInterface
public interface Function<T, R> {

    R apply(T t);

    ....
}

Composition Methods