user=> (list 'a 'b 'c 'd 'e 'f 'g) (a b c d e f g) user=> (list 1 2 3) (1 2 3)
user=> (let [m {:1 1 :2 2 :3 3 :4 4}] (map list (keys m) (vals m))) ((:1 1) (:2 2) (:3 3) (:4 4))
(def ^{:arglists '([& items]) :doc "Creates a new list containing the items." :added "1.0"} list (. clojure.lang.PersistentList creator))
Comments top
No comments for list. Log in to add a comment.