File tree Expand file tree Collapse file tree 1 file changed +59
-3
lines changed Expand file tree Collapse file tree 1 file changed +59
-3
lines changed Original file line number Diff line number Diff line change @@ -12323,6 +12323,16 @@ reduces them without incurring seq initialization"
12323
12323
(-invoke [coll k not-found]
12324
12324
(-lookup coll k not-found))
12325
12325
12326
+ IEditableCollection
12327
+ (-as-transient [coll]
12328
+ coll)
12329
+
12330
+ ITransientCollection
12331
+ (-conj! [coll val]
12332
+ (-conj coll val))
12333
+ (-persistent! [coll]
12334
+ coll)
12335
+
12326
12336
IPrintWithWriter
12327
12337
(-pr-writer [coll writer opts] (pr-sequential-writer writer pr-writer " [" " " " ]" opts coll)))
12328
12338
@@ -12473,9 +12483,23 @@ reduces them without incurring seq initialization"
12473
12483
(-invoke [coll k not-found]
12474
12484
(-lookup coll k not-found))
12475
12485
12476
- ; IEditableCollection
12477
- ; (-as-transient [coll]
12478
- ; (transient (into (simple-hash-map) coll)))
12486
+ IEditableCollection
12487
+ (-as-transient [coll]
12488
+ coll)
12489
+
12490
+ ITransientCollection
12491
+ (-conj! [coll val]
12492
+ (-conj coll val))
12493
+ (-persistent! [coll]
12494
+ coll)
12495
+
12496
+ ITransientAssociative
12497
+ (-assoc! [coll key val]
12498
+ (-assoc coll key val))
12499
+
12500
+ ITransientMap
12501
+ (-dissoc! [coll key]
12502
+ (-dissoc coll key))
12479
12503
12480
12504
IPrintWithWriter
12481
12505
(-pr-writer [coll writer opts]
@@ -12590,6 +12614,24 @@ reduces them without incurring seq initialization"
12590
12614
(-invoke [coll k not-found]
12591
12615
(-lookup coll k not-found))
12592
12616
12617
+ IEditableCollection
12618
+ (-as-transient [coll]
12619
+ coll)
12620
+
12621
+ ITransientCollection
12622
+ (-conj! [coll val]
12623
+ (-conj coll val))
12624
+ (-persistent! [coll]
12625
+ coll)
12626
+
12627
+ ITransientAssociative
12628
+ (-assoc! [coll key val]
12629
+ (-assoc coll key val))
12630
+
12631
+ ITransientMap
12632
+ (-dissoc! [coll key]
12633
+ (-dissoc coll key))
12634
+
12593
12635
IPrintWithWriter
12594
12636
(-pr-writer [coll writer opts]
12595
12637
(print-map coll pr-writer writer opts)))
@@ -12655,6 +12697,20 @@ reduces them without incurring seq initialization"
12655
12697
(-disjoin [coll v]
12656
12698
(Set. meta (dissoc hash-map v) nil ))
12657
12699
12700
+ IEditableCollection
12701
+ (-as-transient [coll]
12702
+ coll)
12703
+
12704
+ ITransientCollection
12705
+ (-conj! [coll val]
12706
+ (-conj coll val))
12707
+ (-persistent! [coll]
12708
+ coll)
12709
+
12710
+ ITransientSet
12711
+ (-disjoin! [coll key]
12712
+ (-disjoin coll key))
12713
+
12658
12714
IFn
12659
12715
(-invoke [coll k]
12660
12716
(-lookup coll k))
You can’t perform that action at this time.
0 commit comments