JavaScript is disabled on your browser.
Overview
Package
Class
Tree
Deprecated
Index
Help
Prev Class
Next Class
Frames
No Frames
All Classes
Summary:
Nested |
Field |
Constr |
Method
Detail:
Field |
Constr |
Method
com.github.dm.jrt.function
Interface Function<IN,OUT>
Type Parameters:
IN
- the input data type.
OUT
- the output data type.
All Known Implementing Classes:
FunctionWrapper
public interface
Function<IN,OUT>
Interface representing a function that accepts one argument and produces a result.
Created by davide-maestroni on 09/21/2015.
Method Summary
Methods
Modifier and Type
Method and Description
OUT
apply
(
IN
in)
Applies this function to the given argument.
Method Detail
apply
OUT
apply(
IN
in)
Applies this function to the given argument.
Parameters:
in
- the input argument.
Returns:
the function result.
Overview
Package
Class
Tree
Deprecated
Index
Help
Prev Class
Next Class
Frames
No Frames
All Classes
Summary:
Nested |
Field |
Constr |
Method
Detail:
Field |
Constr |
Method