sign static method

double sign(
  1. double x
)

Implementation

static double sign(double x) {
  return x.sign;
}