File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -12557,6 +12557,13 @@ reduces them without incurring seq initialization"
12557
12557
(-dissoc! [coll key]
12558
12558
(-dissoc coll key))
12559
12559
12560
+ IIterable
12561
+ (-iterator [coll]
12562
+ (let [xs (-seq coll)]
12563
+ (if (some? xs)
12564
+ (-iterator xs)
12565
+ (nil-iter ))))
12566
+
12560
12567
IPrintWithWriter
12561
12568
(-pr-writer [coll writer opts]
12562
12569
(print-map coll pr-writer writer opts)))
@@ -12717,6 +12724,13 @@ reduces them without incurring seq initialization"
12717
12724
(-dissoc! [coll key]
12718
12725
(-dissoc coll key))
12719
12726
12727
+ IIterable
12728
+ (-iterator [coll]
12729
+ (let [xs (-seq coll)]
12730
+ (if (some? xs)
12731
+ (-iterator xs)
12732
+ (nil-iter ))))
12733
+
12720
12734
IPrintWithWriter
12721
12735
(-pr-writer [coll writer opts]
12722
12736
(print-map coll pr-writer writer opts)))
You can’t perform that action at this time.
0 commit comments