isDoubleNan function

bool isDoubleNan(
  1. double f1
)

Implementation

bool isDoubleNan(double f1) {
  return f1.isNaN || f1.isInfinite;
}