File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -12249,6 +12249,10 @@ reduces them without incurring seq initialization"
12249
12249
; ;; Vector
12250
12250
12251
12251
(deftype Vector [meta array ^:mutable __hash]
12252
+ Object
12253
+ (toString [coll]
12254
+ (pr-str* coll))
12255
+
12252
12256
IWithMeta
12253
12257
(-with-meta [coll meta] (Vector. meta array __hash))
12254
12258
@@ -12414,6 +12418,10 @@ reduces them without incurring seq initialization"
12414
12418
(recur (+ i incr)))))))
12415
12419
12416
12420
(deftype ObjMap [meta keys strobj ^:mutable __hash]
12421
+ Object
12422
+ (toString [coll]
12423
+ (pr-str* coll))
12424
+
12417
12425
IWithMeta
12418
12426
(-with-meta [coll meta] (ObjMap. meta keys strobj __hash))
12419
12427
@@ -12573,6 +12581,10 @@ reduces them without incurring seq initialization"
12573
12581
; collisions. A bucket is an array of alternating keys (not their hashes) and
12574
12582
; vals.
12575
12583
(deftype HashMap [meta count hashobj ^:mutable __hash]
12584
+ Object
12585
+ (toString [coll]
12586
+ (pr-str* coll))
12587
+
12576
12588
IWithMeta
12577
12589
(-with-meta [coll meta] (HashMap. meta count hashobj __hash))
12578
12590
@@ -12716,6 +12728,10 @@ reduces them without incurring seq initialization"
12716
12728
out)))
12717
12729
12718
12730
(deftype Set [meta hash-map ^:mutable __hash]
12731
+ Object
12732
+ (toString [coll]
12733
+ (pr-str* coll))
12734
+
12719
12735
IWithMeta
12720
12736
(-with-meta [coll meta] (Set. meta hash-map __hash))
12721
12737
You can’t perform that action at this time.
0 commit comments