Skip to main content

isnan

Overloads

NameDescription
isnan(integer p) -> boolChecks if the given value is NaN (Not-a-Number).
isnan(bool p) -> boolChecks if the given value is NaN (Not-a-Number).
isnan(real p) -> boolChecks if the given value is NaN (Not-a-Number).

isnan(integer p) -> bool

Checks if the given value is NaN (Not-a-Number).

Parameters

  • p: The value to check for NaN.

isnan(bool p) -> bool

Checks if the given value is NaN (Not-a-Number).

Parameters

  • p: The value to check for NaN.

isnan(real p) -> bool

Checks if the given value is NaN (Not-a-Number).

Parameters

  • p: The value to check for NaN.