> For the complete documentation index, see [llms.txt](https://docs.origami.tech/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.origami.tech/function/functions/is-nan.md).

# Is NaN

## <mark style="color:purple;">`is_nan`</mark>(*decimal*) -> *bool*

Returns bool

True if input Nan and False if input not Nan

<details>

<summary>Example:</summary>

<mark style="color:red;">`is_nan(Nan)`</mark> → <mark style="color:red;">`true`</mark>

<mark style="color:red;">`is_nan(1.1)`</mark> → <mark style="color:red;">`false`</mark>

</details>
