atan function

num atan(
  1. num x
)

Computes the arc tangent of the value x.

The returned value is an angle in the range from -PI/2 to PI/2 radians.

Implementation

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