Skip to content

Instantly share code, notes, and snippets.

@mfikes
Created March 25, 2015 04:08
Show Gist options
  • Save mfikes/384249a9b962a00d454a to your computer and use it in GitHub Desktop.
Save mfikes/384249a9b962a00d454a to your computer and use it in GitHub Desktop.
To quit, type: :cljs/quit
ClojureScript:cljs.user> (require '[clojure.set])
nil
ClojureScript:cljs.user> (doc clojure.set/union)
-------------------------
clojure.set/union
([] [s1] [s1 s2] [s1 s2 & sets])
  Return a set that is the union of the input sets
nil
ClojureScript:cljs.user> (clojure.set/union #{:a} #{:b})
#{:a :b}
ClojureScript:cljs.user>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment