list-set! -- r7rs Definition
§

Kind
§

mutator!;

Extended by
§

Procedure signature
§

Procedure variants:

Exports
§

Exports recursive
§

Description
§

(list-set! list k obj)

Domain: It is an error if k is not a valid index of list.

The list-set! procedure stores obj in element k of list.

(let ((ls (list 'one 'two 'five!)))
  (list-set! ls 2 'three)
  ls)      ===>  (one two three)

(list-set! '(0 1 2) 1 "oops")  ===>  #error  ; constant list

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

Referenced-types
§