@@ -1742,7 +1742,7 @@ reduces them without incurring seq initialization"
1742
1742
(cons o coll))
1743
1743
1744
1744
IEmptyableCollection
1745
- (-empty [coll] (-with-meta ( .-EMPTY List) meta ))
1745
+ (-empty [coll] (.-EMPTY List))
1746
1746
1747
1747
IHash
1748
1748
(-hash [coll] (hash-ordered-coll coll))
@@ -4874,7 +4874,7 @@ reduces them without incurring seq initialization"
4874
4874
(-conj [coll o] (cons o coll))
4875
4875
4876
4876
IEmptyableCollection
4877
- (-empty [coll] (-with-meta ( .-EMPTY List) meta ))
4877
+ (-empty [coll] (.-EMPTY List))
4878
4878
4879
4879
ISequential
4880
4880
ISeqable
@@ -4963,7 +4963,7 @@ reduces them without incurring seq initialization"
4963
4963
(-conj [coll o] (cons o coll))
4964
4964
4965
4965
IEmptyableCollection
4966
- (-empty [coll] (-with-meta ( .-EMPTY List) meta ))
4966
+ (-empty [coll] (.-EMPTY List))
4967
4967
4968
4968
IHash
4969
4969
(-hash [coll] (caching-hash coll hash-ordered-coll __hash))
@@ -5060,7 +5060,7 @@ reduces them without incurring seq initialization"
5060
5060
(-conj [coll o] (cons o coll))
5061
5061
5062
5062
IEmptyableCollection
5063
- (-empty [coll] (-with-meta ( .-EMPTY List) meta ))
5063
+ (-empty [coll] (.-EMPTY List))
5064
5064
5065
5065
ISequential
5066
5066
ISeqable
@@ -6774,7 +6774,7 @@ reduces them without incurring seq initialization"
6774
6774
(cons o coll))
6775
6775
6776
6776
IEmptyableCollection
6777
- (-empty [coll] (-with-meta ( .-EMPTY List) _meta ))
6777
+ (-empty [coll] (.-EMPTY List))
6778
6778
6779
6779
IHash
6780
6780
(-hash [coll] (hash-ordered-coll coll))
@@ -6785,13 +6785,13 @@ reduces them without incurring seq initialization"
6785
6785
6786
6786
(-rest [coll]
6787
6787
(if (< i (- (alength arr) 2 ))
6788
- (PersistentArrayMapSeq. arr (+ i 2 ) _meta )
6788
+ (PersistentArrayMapSeq. arr (+ i 2 ) nil )
6789
6789
()))
6790
6790
6791
6791
INext
6792
6792
(-next [coll]
6793
6793
(when (< i (- (alength arr) 2 ))
6794
- (PersistentArrayMapSeq. arr (+ i 2 ) _meta )))
6794
+ (PersistentArrayMapSeq. arr (+ i 2 ) nil )))
6795
6795
6796
6796
IReduce
6797
6797
(-reduce [coll f] (seq-reduce f coll))
@@ -7722,7 +7722,7 @@ reduces them without incurring seq initialization"
7722
7722
(-conj [coll o] (cons o coll))
7723
7723
7724
7724
IEmptyableCollection
7725
- (-empty [coll] (-with-meta ( .-EMPTY List) meta ))
7725
+ (-empty [coll] (.-EMPTY List))
7726
7726
7727
7727
ISequential
7728
7728
ISeq
@@ -7803,18 +7803,18 @@ reduces them without incurring seq initialization"
7803
7803
(-conj [coll o] (cons o coll))
7804
7804
7805
7805
IEmptyableCollection
7806
- (-empty [coll] (-with-meta ( .-EMPTY List) meta ))
7806
+ (-empty [coll] (.-EMPTY List))
7807
7807
7808
7808
ISequential
7809
7809
ISeq
7810
7810
(-first [coll] (first s))
7811
7811
(-rest [coll]
7812
- (let [ret (create-array-node-seq nil nodes i (next s))]
7812
+ (let [ret (create-array-node-seq nodes i (next s))]
7813
7813
(if-not (nil? ret) ret ())))
7814
7814
7815
7815
INext
7816
7816
(-next [coll]
7817
- (create-array-node-seq nil nodes i (next s)))
7817
+ (create-array-node-seq nodes i (next s)))
7818
7818
7819
7819
ISeqable
7820
7820
(-seq [this] this)
@@ -7832,18 +7832,18 @@ reduces them without incurring seq initialization"
7832
7832
(es6-iterable ArrayNodeSeq)
7833
7833
7834
7834
(defn- create-array-node-seq
7835
- ([nodes] (create-array-node-seq nil nodes 0 nil ))
7836
- ([meta nodes i s]
7835
+ ([nodes] (create-array-node-seq nodes 0 nil ))
7836
+ ([nodes i s]
7837
7837
(if (nil? s)
7838
7838
(let [len (alength nodes)]
7839
7839
(loop [j i]
7840
7840
(if (< j len)
7841
7841
(if-let [nj (aget nodes j)]
7842
7842
(if-let [ns (.inode-seq nj)]
7843
- (ArrayNodeSeq. meta nodes (inc j) ns nil )
7843
+ (ArrayNodeSeq. nil nodes (inc j) ns nil )
7844
7844
(recur (inc j)))
7845
7845
(recur (inc j))))))
7846
- (ArrayNodeSeq. meta nodes i s nil ))))
7846
+ (ArrayNodeSeq. nil nodes i s nil ))))
7847
7847
7848
7848
(deftype HashMapIter [nil-val root-iter ^:mutable seen]
7849
7849
Object
@@ -8972,7 +8972,7 @@ reduces them without incurring seq initialization"
8972
8972
(cons o coll))
8973
8973
8974
8974
IEmptyableCollection
8975
- (-empty [coll] (-with-meta ( .-EMPTY List) _meta ))
8975
+ (-empty [coll] (.-EMPTY List))
8976
8976
8977
8977
IHash
8978
8978
(-hash [coll] (hash-ordered-coll coll))
@@ -8987,7 +8987,7 @@ reduces them without incurring seq initialization"
8987
8987
(-next mseq)
8988
8988
(next mseq))]
8989
8989
(if-not (nil? nseq)
8990
- (KeySeq. nseq _meta )
8990
+ (KeySeq. nseq nil )
8991
8991
())))
8992
8992
8993
8993
INext
@@ -8996,7 +8996,7 @@ reduces them without incurring seq initialization"
8996
8996
(-next mseq)
8997
8997
(next mseq))]
8998
8998
(when-not (nil? nseq)
8999
- (KeySeq. nseq _meta ))))
8999
+ (KeySeq. nseq nil ))))
9000
9000
9001
9001
IReduce
9002
9002
(-reduce [coll f] (seq-reduce f coll))
@@ -9724,9 +9724,9 @@ reduces them without incurring seq initialization"
9724
9724
(-next [rng]
9725
9725
(if (pos? step)
9726
9726
(when (< (+ start step) end)
9727
- (Range. meta (+ start step) end step nil nil nil ))
9727
+ (Range. nil (+ start step) end step nil nil nil ))
9728
9728
(when (> (+ start step) end)
9729
- (Range. meta (+ start step) end step nil nil nil ))))
9729
+ (Range. nil (+ start step) end step nil nil nil ))))
9730
9730
9731
9731
IChunkedSeq
9732
9732
(-chunked-first [rng]
@@ -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) meta ))
9749
+ (-empty [rng] (-with-meta (.-EMPTY List) nil ))
9750
9750
9751
9751
ISequential
9752
9752
IEquiv
0 commit comments