cos static method

double cos(
  1. num x
)

Implementation

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