isNan static method

bool isNan(
  1. double x
)

Implementation

static bool isNan( double x ){
	return x.isNaN;
}