Java.util.function.Supplier: Difference between revisions
Jump to navigation
Jump to search
(Created page with "{{External|https://docs.oracle.com/javase/8/docs/api/java/util/function/Supplier.html}}") |
No edit summary |
||
Line 1: | Line 1: | ||
=External= | |||
* https://docs.oracle.com/javase/8/docs/api/java/util/function/Supplier.html | |||
=Internal= | |||
* [[Java 8 Lambda Expressions#Supplier|Java 8 Lambda Expressions]] | |||
=Overview= | |||
<syntaxhighlight lang='java'> | |||
@FunctionalInterface | |||
public interface UnaryOperator<T> extends Function<T, T> { | |||
T apply(T t); | |||
} | |||
</syntaxhighlight> |
Revision as of 21:34, 29 March 2018
External
Internal
Overview
@FunctionalInterface
public interface UnaryOperator<T> extends Function<T, T> {
T apply(T t);
}