exact? -- r7rs Definition
§

Kind
§

type-predicate;

Extended by
§

Procedure signature
§

Procedure variants:

Exports
§

Exports recursive
§

Description
§

(exact? z)
(inexact? z)

These numerical predicates provide tests for the exactness of a quantity. For any Scheme number, precisely one of these predicates is true.

(exact? 3.0)           ===>  #f
(exact? #e3.0)         ===>  #t
(inexact? 3.)          ===>  #t

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

Referenced-types
§