isInf static method

bool isInf(
  1. double x
)

Implementation

static bool isInf( double x ){
	return x.isInfinite;
}