Calculates the arc sine of x, returning a value ranging from -π/2 to +π/2. Exceptions:
decimal32 x = 1; assert(asin(x) == decimal32.PI_2); assert(asin(-x) == -decimal32.PI_2);
See Implementation
Calculates the arc sine of x, returning a value ranging from -π/2 to +π/2. Exceptions: