The Trunk: Collections-dtl.731.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-dtl.731.mcz

commits-2
David T. Lewis uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/Collections-dtl.731.mcz

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

Name: Collections-dtl.731
Author: dtl
Time: 7 February 2017, 7:39:36.894882 pm
UUID: 35b44f6d-37d7-47b0-a30e-7792cbf86e52
Ancestors: Collections-ul.730, Collections-monty.714

Merge Collections-monty.714

=============== Diff against Collections-ul.730 ===============

Item was added:
+ ----- Method: ByteString>>applyLanguageInformation: (in category 'accessing') -----
+ applyLanguageInformation: languageEnvironment
+ !

Item was added:
+ ----- Method: String>>applyLanguageInformation: (in category 'accessing') -----
+ applyLanguageInformation: languageEnvironment
+
+ | leadingChar |
+ leadingChar := languageEnvironment leadingChar.
+ self withIndexDo: [:each :idx |
+ each asciiValue > 255
+ ifTrue: [self at: idx put: (Character leadingChar: leadingChar code: each asUnicode)]]!