Marcel Taeumel uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/Collections-mt.861.mcz==================== Summary ====================
Name: Collections-mt.861
Author: mt
Time: 18 November 2019, 5:31:24.433051 pm
UUID: 541ac3b5-5e2f-0443-99b2-4f3fc3a87a5b
Ancestors: Collections-mt.860, Collections-ct.855
Merges and extends Collections-ct.855. Complements CollectionsTests-mt.326.
=============== Diff against Collections-mt.860 ===============
Item was added:
+ ----- Method: Text>>addAllAttributes: (in category 'emphasis') -----
+ addAllAttributes: attributes
+
+ attributes do: [:attribute |
+ self addAttribute: attribute].!
Item was added:
+ ----- Method: Text>>addAllAttributes:from:to: (in category 'emphasis') -----
+ addAllAttributes: attributes from: start to: stop
+
+ attributes do: [:attribute |
+ self addAttribute: attribute from: start to: stop].!