IN
- the type of the input to the function.OUT
- the type of the result.public interface MultiFunction<IN,OUT>
Modifier and Type | Method and Description |
---|---|
List<OUT> |
apply(IN in)
Apply the function to the input argument and return the result(s).
|