list
-- r7rs
Definition constructor
;
Procedure variants:
(() -> (null))
null
;((any |1...|) -> (list-proper))
any
;...
-- at least one time;list-proper
;scheme:base
-- (scheme base)
;scheme
-- (scheme)
;(list obj ...)
Returns a newly allocated list of its arguments.
(list 'a (+ 3 4) 'c) ===> (a 7 c) (list) ===> ()
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.
null
;any
;list-proper
;