用于仅确保将不同的元素添加到序列中。
以下是语法。
(distinct seq1)
Parameters - 'seq1'是元素的序列列表。
Return Value - 仅返回不同元素的元素序列。
以下是Clojure中的一个独特的例子。
(ns clojure.examples.example
(:gen-class))
;; This program displays Hello World
(defn Example []
(def seq1 (distinct (seq [1 1 2 2])))
(println seq1))
(Example)
上述程序产生以下输出。
(1 2)