not -- r7rs Definition
§

Kind
§

predicate;

Implemented by
§

Procedure signature
§

Procedure variants:

Exports
§

Exports recursive
§

Description
§

(not obj)

The not procedure returns #t if obj is false, and returns #f otherwise.

(not #t)         ===>  #f
(not 3)          ===>  #f
(not (list 3))   ===>  #f
(not #f)         ===>  #t
(not '())        ===>  #f
(not (list))     ===>  #f
(not 'nil)       ===>  #f

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

Referenced-types
§