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.htm
广告