apply abstract method

T apply(
  1. T x
)

Applies an operation on a T object, returning a T object.

Note: The returned object could probably be the same one with given input, and given input could probably be changed.

Implementation

T apply(T x);