isunordered function

bool isunordered(
  1. double x,
  2. double y
)

Implementation

bool isunordered(double x, double y) => x.isNaN || y.isNaN;