set-car! -- r7rs Definition
§

Kind
§

mutator!;

Extended by
§

Procedure signature
§

Procedure variants:

Exports
§

Exports recursive
§

Description
§

(set-car! pair obj)

Stores obj in the car field of pair.

(define (f) (list 'not-a-constant-list))
(define (g) '(constant-list))
(set-car! (f) 3)             ===>  #unspecified
(set-car! (g) 3)             ===>  #error

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

Referenced-types
§