Clojure Lists conj
2018-12-21 15:21 更新
返回一个新列表,其中列表在开头,要追加的元素放在末尾。
语法
以下是conj的基本使用语法:
(conj lst elementlst)
参数− 'elementalist'是需要添加到列表中的项目列表。 'lst'是项目列表。
返回值 − 带有附加值的列表。
例
下面是conj函数的示例:
(ns clojure.examples.example (:gen-class)) (defn example [] (println (conj (list 1 2,3) 4 5))) (example)
输出
以上示例将输出以下结果:
(5 4 1 2 3)
以上内容是否对您有帮助:
更多建议: