asin function

num asin(
  1. num x
)

Computes the arc sine of the value x.

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

Implementation

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