Is NaN

is_nan(decimal) -> bool

Returns bool

True if input Nan and False if input not Nan

Example:

is_nan(Nan)true

is_nan(1.1)false

Last updated