t1<T> static method

Tuple1<T> t1<T>(
  1. T a
)

Utility method for creating a Tuple1.

Implementation

static Tuple1<T> t1<T>(T a) => Tuple1<T>(a);