We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ad974d commit 75c82edCopy full SHA for 75c82ed
src/main/cljs/cljs/core.cljs
@@ -13015,6 +13015,13 @@ reduces them without incurring seq initialization"
13015
(-invoke [coll k not-found]
13016
(-lookup coll k not-found))
13017
13018
+ IIterable
13019
+ (-iterator [coll]
13020
+ (let [xs (-seq coll)]
13021
+ (if (some? xs)
13022
+ (-iterator xs)
13023
+ (nil-iter))))
13024
+
13025
IPrintWithWriter
13026
(-pr-writer [coll writer opts] (pr-sequential-writer writer pr-writer "#{" " " "}" opts coll)))
13027
src/test/cljs/lite_test_runner.cljs
@@ -80,7 +80,7 @@
80
'cljs.seqs-test
81
'cljs.hashing-test
82
'cljs.interop-test ;; ES6 stuff
83
- #_'cljs.iterator-test
+ 'cljs.iterator-test
84
'cljs.reader-test
85
'cljs.binding-test
86
'cljs.parse-test
0 commit comments