Clojure - 向量 conj 函数



将元素添加到向量末尾并返回新的向量。

语法

以下是语法。

(conj vec x)

参数 − ‘vec’ 是向量元素集合。‘x’ 是需要添加到向量元素集合中的元素。

返回值 − 返回包含已添加元素的新向量。

示例

以下是在 Clojure 中使用 conj 的示例。

(ns clojure.examples.example
   (:gen-class))
(defn example []
   (println (conj (vector 3 2 1) 5)))
(example)

输出

以上代码产生以下输出。

[3 2 1 5]
clojure_vectors.htm
广告