exact-integer? -- r7rs Definition
§

Kind
§

type-predicate;

Extended by
§

Procedure signature
§

Procedure variants:

Exports
§

Exports recursive
§

Description
§

(exact-integer? z)

Returns #t if z is both exact and an integer; otherwise returns #f.

(exact-integer? 32)    ===>  #t
(exact-integer? 32.0)  ===>  #f
(exact-integer? 32/5)  ===>  #f

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

Referenced-types
§