I am using ClojureClr 1.6.0
and I'm trying to use clojure.set
but I can't find it:
user=> (doc clojure.set/union)
; nil
When I try to use it, I get:
user=> (clojure.set/union #{1 2} #{3})
; TypeNotFoundException Unable to find type: clojure.set clojure.lang.RT.classForNameE (:0)
I tried to load it
user=> (require '(clojure.set))
; nil
but still couldn't find it.