isnormal function

bool isnormal(
  1. double x
)

Implementation

bool isnormal(double x) => fpclassify(x) == FP_NORMAL;