[squeak-dev] The Trunk: Collections-mt.952.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Jul 5 09:33:44 UTC 2021


Marcel Taeumel uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/Collections-mt.952.mcz

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

Name: Collections-mt.952
Author: mt
Time: 5 July 2021, 11:33:42.546805 am
UUID: f848913c-5ee8-e349-8b6d-3646fb60c7b0
Ancestors: Collections-ct.951

Now that the simple/faster version of #take: was pushed down to ReadStream, do the same for ReadWriteStream.

Note that we still have to figure out whether we can set the readLimit from the beginning in those ReadWriteStreams.

Also see:
http://lists.squeakfoundation.org/pipermail/squeak-dev/2021-June/215910.html
http://lists.squeakfoundation.org/pipermail/squeak-dev/2021-July/215958.html

=============== Diff against Collections-ct.951 ===============

Item was added:
+ ----- Method: ReadWriteStream>>take: (in category 'collections - accessing') -----
+ take: maxNumberOfElements
+ 	"Overridden for efficiency."
+ 	
+ 	^ self next: maxNumberOfElements!



More information about the Squeak-dev mailing list