procedure? -- r7rs Definition
§

Kind
§

type-predicate;

Extended by
§

Procedure signature
§

Procedure variants:

Exports
§

Exports recursive
§

Description
§

(procedure? obj)

Returns #t if obj is a procedure, otherwise returns #f.

(procedure? car)            ===>  #t
(procedure? 'car)           ===>  #f
(procedure? (lambda (x) (* x x)))
                            ===>  #t
(procedure? '(lambda (x) (* x x)))
                            ===>  #f
(call-with-current-continuation procedure?)
                            ===>  #t

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

Referenced-types
§