identity<T> function

T identity<T>(
  1. T x
)

Identity function

Implementation

T identity<T>(T x) => x;