Clojure - conj

将一个元素追加到集合中并返回新的元素集。

语法

语法如下。

(conj setofelements x)

参数 − 'setofelements'是元素的集合。 'x'是需要附加到元素集中的元素。

返回值 − 返回带有附加元素的新集合。

示例

以下是 Clojure 中 conj 的示例。

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

输出

上面的代码产生以下输出。

#{1 3 2 5}

❮ clojure_sets.html