nan? -- r7rs Definition
§

Kind
§

predicate;

Implemented by
§

Procedure signature
§

Procedure variants:

Exports
§

Exports recursive
§

Description
§

(nan? z)

The nan? procedure returns #t on +nan.0, and on complex numbers if their real or imaginary parts or both are +nan.0. Otherwise it returns #f.

(nan? +nan.0)          ===>  #t
(nan? 32)              ===>  #f
(nan? +nan.0+5.0i)     ===>  #t
(nan? 1+2i)            ===>  #f

The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.

Referenced-types
§