apply abstract method

List<T> apply(
  1. List<T> list
)

Apply this operation to a list and return the result.

The original list is not modified; a new list is returned.

Implementation

List<T> apply(List<T> list);