The Trunk: Collections-cmm.835.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-cmm.835.mcz

commits-2
Chris Muller uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/Collections-cmm.835.mcz

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

Name: Collections-cmm.835
Author: cmm
Time: 25 May 2019, 5:37:43.260101 pm
UUID: 691806ad-7981-4e23-aad9-864eaf710a5a
Ancestors: Collections-mt.834

- Moved three methods belonging to Chronology to that package.

=============== Diff against Collections-mt.834 ===============

Item was removed:
- ----- Method: String>>asDate (in category 'converting') -----
- asDate
- "Many allowed forms, see Date>>#readFrom:"
-
- ^ Date fromString: self!

Item was removed:
- ----- Method: String>>asDateAndTime (in category 'converting') -----
- asDateAndTime
-
- "Convert from UTC format" ^ DateAndTime fromString: self!

Item was removed:
- ----- Method: String>>asDuration (in category 'converting') -----
- asDuration
- "convert from [nnnd]hh:mm:ss[.nanos] format. [] implies optional elements"
-
- ^ Duration fromString: self
- !