pow static method

double pow(
  1. double x,
  2. double y
)

Implementation

static double pow( double x, double y ){ return math.pow( x, y ).toDouble(); }