Closed arrdem closed 8 years ago
This changeset has one primary change: supporting the :jnt conditional clause in addition to :clj.
:jnt
:clj
#?(:cljs "nope" :jnt "w00t" :clj "nope") ;; => "w00t" #?(:cljs "nope" :clj "still works") ;; => "still works"
Incidental changes to this end include:
clojure.lang.Seqable/iterator
clojure.lang.RT/union [set, coll] -> set
Fixes #68
Needs reader tests...
:shipit:
This changeset has one primary change: supporting the
:jnt
conditional clause in addition to:clj
.Incidental changes to this end include:
clojure.lang.Seqable/iterator
(Java 1.8 feature)clojure.lang.RT/union [set, coll] -> set
(used in the reader changes)Fixes #68