The Trunk: PackageInfo-Base-fbs.66.mcz

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

The Trunk: PackageInfo-Base-fbs.66.mcz

commits-2
Frank Shearar uploaded a new version of PackageInfo-Base to project The Trunk:
http://source.squeak.org/trunk/PackageInfo-Base-fbs.66.mcz

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

Name: PackageInfo-Base-fbs.66
Author: fbs
Time: 3 July 2013, 10:10:51.036 pm
UUID: b7947681-b5b3-924d-afff-589ced549550
Ancestors: PackageInfo-Base-fbs.65

#gather: (also known as #flatMap: or #mapcan:) belongs in the Collections package: it's generally useful outside PackageInfo.

=============== Diff against PackageInfo-Base-fbs.65 ===============

Item was removed:
- ----- Method: Collection>>gather: (in category '*packageinfo-base') -----
- gather: aBlock
- ^ Array streamContents:
- [:stream |
- self do: [:ea | stream nextPutAll: (aBlock value: ea)]]!