T method

double T(
  1. double radians
)

Returns the tangent of radians, shorthand for tan.

Implementation

double T(double radians) => tan(radians);