Java.util.function.UnaryOperator: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "{{External|https://docs.oracle.com/javase/8/docs/api/java/util/function/UnaryOperator.html}}")
 
No edit summary
 
Line 1: Line 1:
{{External|https://docs.oracle.com/javase/8/docs/api/java/util/function/UnaryOperator.html}}
=External=
 
* https://docs.oracle.com/javase/8/docs/api/java/util/function/UnaryOperator.html
 
=Internal=
 
* [[Java 8 Lambda Expressions#UnaryOperator|Java 8 Lambda Expressions]]
 
=Overview=
 
<syntaxhighlight lang='java'>
@FunctionalInterface
public interface UnaryOperator<T> extends Function<T, T> {
 
    T apply(T t);
 
}
</syntaxhighlight>

Latest revision as of 21:25, 29 March 2018

External

Internal

Overview

@FunctionalInterface
public interface UnaryOperator<T> extends Function<T, T> {

    T apply(T t);

}