@@ -3590,15 +3590,15 @@ reduces them without incurring seq initialization"
3590
3590
(-first [coll] (-nth chunk 0 ))
3591
3591
(-rest [coll]
3592
3592
(if (> (-count chunk) 1 )
3593
- (ChunkedCons. (-drop-first chunk) more meta nil )
3593
+ (ChunkedCons. (-drop-first chunk) more nil nil )
3594
3594
(if (nil? more)
3595
3595
()
3596
3596
more)))
3597
3597
3598
3598
INext
3599
3599
(-next [coll]
3600
3600
(if (> (-count chunk) 1 )
3601
- (ChunkedCons. (-drop-first chunk) more meta nil )
3601
+ (ChunkedCons. (-drop-first chunk) more nil nil )
3602
3602
(when-not (nil? more)
3603
3603
(-seq more))))
3604
3604
@@ -3620,7 +3620,7 @@ reduces them without incurring seq initialization"
3620
3620
(cons o this))
3621
3621
3622
3622
IEmptyableCollection
3623
- (-empty [coll] (-with-meta ( .-EMPTY List) meta ))
3623
+ (-empty [coll] (.-EMPTY List))
3624
3624
3625
3625
IHash
3626
3626
(-hash [coll] (caching-hash coll hash-ordered-coll __hash)))
@@ -8210,7 +8210,7 @@ reduces them without incurring seq initialization"
8210
8210
(-conj [coll o] (cons o coll))
8211
8211
8212
8212
IEmptyableCollection
8213
- (-empty [coll] (-with-meta ( .-EMPTY List) meta ))
8213
+ (-empty [coll] (.-EMPTY List))
8214
8214
8215
8215
IHash
8216
8216
(-hash [coll] (caching-hash coll hash-ordered-coll __hash))
@@ -9051,7 +9051,7 @@ reduces them without incurring seq initialization"
9051
9051
(cons o coll))
9052
9052
9053
9053
IEmptyableCollection
9054
- (-empty [coll] (-with-meta ( .-EMPTY List) _meta ))
9054
+ (-empty [coll] (.-EMPTY List))
9055
9055
9056
9056
IHash
9057
9057
(-hash [coll] (hash-ordered-coll coll))
@@ -9066,7 +9066,7 @@ reduces them without incurring seq initialization"
9066
9066
(-next mseq)
9067
9067
(next mseq))]
9068
9068
(if-not (nil? nseq)
9069
- (ValSeq. nseq _meta )
9069
+ (ValSeq. nseq nil )
9070
9070
())))
9071
9071
9072
9072
INext
@@ -9075,7 +9075,7 @@ reduces them without incurring seq initialization"
9075
9075
(-next mseq)
9076
9076
(next mseq))]
9077
9077
(when-not (nil? nseq)
9078
- (ValSeq. nseq _meta ))))
9078
+ (ValSeq. nseq nil ))))
9079
9079
9080
9080
IReduce
9081
9081
(-reduce [coll f] (seq-reduce f coll))
@@ -9746,7 +9746,7 @@ reduces them without incurring seq initialization"
9746
9746
(-conj [rng o] (cons o rng))
9747
9747
9748
9748
IEmptyableCollection
9749
- (-empty [rng] (-with-meta ( .-EMPTY List) nil ))
9749
+ (-empty [rng] (.-EMPTY List))
9750
9750
9751
9751
ISequential
9752
9752
IEquiv
0 commit comments