得到两个列表的并集的一种方法是 union. Clojure> (into #{} (clojure.set/union '(1,2,3) '(3,4,5))) #{1 2 3 4 5}. 或者如果你想得到一份名单
確定! 回上一頁