File tree Expand file tree Collapse file tree 1 file changed +1
-19
lines changed Expand file tree Collapse file tree 1 file changed +1
-19
lines changed Original file line number Diff line number Diff line change @@ -12349,12 +12349,6 @@ reduces them without incurring seq initialization"
12349
12349
(declare simple-hash-map )
12350
12350
12351
12351
(deftype ObjMap [meta keys strobj ^:mutable __hash]
12352
- Object
12353
- (toString [coll]
12354
- (pr-str* coll))
12355
- (equiv [this other]
12356
- (-equiv this other))
12357
-
12358
12352
IWithMeta
12359
12353
(-with-meta [coll meta] (ObjMap. meta keys strobj __hash))
12360
12354
@@ -12482,12 +12476,6 @@ reduces them without incurring seq initialization"
12482
12476
; collisions. A bucket is an array of alternating keys (not their hashes) and
12483
12477
; vals.
12484
12478
(deftype HashMap [meta count hashobj ^:mutable __hash]
12485
- Object
12486
- (toString [coll]
12487
- (pr-str* coll))
12488
- (equiv [this other]
12489
- (-equiv this other))
12490
-
12491
12479
IWithMeta
12492
12480
(-with-meta [coll meta] (HashMap. meta count hashobj __hash))
12493
12481
@@ -12599,12 +12587,6 @@ reduces them without incurring seq initialization"
12599
12587
out)))
12600
12588
12601
12589
(deftype Set [meta hash-map ^:mutable __hash]
12602
- Object
12603
- (toString [coll]
12604
- (pr-str* coll))
12605
- (equiv [this other]
12606
- (-equiv this other))
12607
-
12608
12590
IWithMeta
12609
12591
(-with-meta [coll meta] (Set. meta hash-map __hash))
12610
12592
@@ -12656,4 +12638,4 @@ reduces them without incurring seq initialization"
12656
12638
IPrintWithWriter
12657
12639
(-pr-writer [coll writer opts] (pr-sequential-writer writer pr-writer " #{" " " " }" opts coll)))
12658
12640
12659
- (set! (. Set -EMPTY) (Set. nil (hash-map ) empty-unordered-hash))
12641
+ (set! (. Set -EMPTY) (Set. nil (simple- hash-map ) empty-unordered-hash))
You can’t perform that action at this time.
0 commit comments