exp static method

double exp(
  1. num x
)

Implementation

static double exp(num x) {
  return math.exp(x);
}