The Trunk: Collections-ct.855.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Collections-ct.855.mcz

commits-2
Marcel Taeumel uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/Collections-ct.855.mcz

==================== Summary ====================

Name: Collections-ct.855
Author: ct
Time: 20 September 2019, 6:56:22.518437 pm
UUID: 079663b5-47e2-bd47-bfa4-86db03bd98d8
Ancestors: Collections-mt.854

Add convenience method for adding many attributes to a Text.

=============== Diff against Collections-mt.854 ===============

Item was added:
+ ----- Method: Text>>addAllAttributes: (in category 'emphasis') -----
+ addAllAttributes: attributes
+
+ attributes do: [:attribute |
+ self addAttribute: attribute].!