The Inbox: Collections-ct.1118.mcz

[email protected] Sat, 4 Jul 2026 21:01:19 0000
Newsgroups gmane.comp.lang.smalltalk.squeak.general
Message-ID <[email protected]>
Christoph Thiede uploaded a new version of Collections to project The Inbox:
http://source.squeak.org/inbox/Collections-ct.1118.mcz

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

Name: Collections-ct.1118
Author: ct
Time: 4 July 2026, 11:01:18.629182 pm
UUID: 35dd6744-0ede-458f-9468-f90e8a142e71
Ancestors: Collections-ct.1115

Further improves compatibility of texts with strings by also copying truncateTo: next to truncateWithEllipsisTo:.

=============== Diff against Collections-ct.1115 ===============

Item was added:
+ ----- Method: Text>>truncateTo: (in category 'converting') -----
+ truncateTo: smallSize
+ 	"return myself or a copy shortened to smallSize.  1/18/96 sw"
+ 
+ 	^ self size <= smallSize
+ 		ifTrue:
+ 			[self]
+ 		ifFalse:
+ 			[self copyFrom: 1 to: smallSize]!

Squeak-dev mailing list -- [email protected]
To unsubscribe send an email to [email protected]