tan function

num tan(
  1. num x
)

Computes the tangent of the angle x given in radians.

Implementation

num tan(num x) => math.tan(x);