previous up next     contents index
Next: Boxes Up: Programming Constructs Previous: Vectors

Lists

The global identifier null is bound to the empty list.

    (reverse! list) is the same as (reverse list), but list is destructively reversed.

(append! list tex2html_wrap_inline8724 ) destructively appends lists.

  (list* v tex2html_wrap_inline8724 ) is similar to (list v tex2html_wrap_inline8724 ) but the last argument is used directly as the cdr of the last pair constructed for the list:

 
  (list* 1 2 3 4) ; => (1 2 3 . 4) 


PLT