Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. # disj Disjoins an element from the set. ### Syntax <code> (disj setofelements x) </code> ### Example <code> (ns clojure.examples.example (:gen-class)) (defn example [] (println (disj (set '(3 2 1)) 2))) (example) </code> #### Output <code> #{1 3} </code> ## Refs - https://www.tutorialspoint.com/clojure/clojure_disj.htm open/disj.txt Last modified: 2024/10/05 06:15by 127.0.0.1