The Trunk: Collections-mt.1120.mcz

[email protected]
Newsgroups gmane.comp.lang.smalltalk.squeak.general
Message-ID <[email protected]>
Marcel Taeumel uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/Collections-mt.1120.mcz

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

Name: Collections-mt.1120
Author: mt
Time: 7 August 2026, 4:47:34.025073 pm
UUID: 785150c2-c1cf-9344-b077-e1c416a25066
Ancestors: Collections-mt.1119

First method for the 62Deprecated package :-)

=============== Diff against Collections-mt.1119 ===============

Item was removed:
- ----- Method: Heap>>privateReverseSort (in category 'private') -----
- privateReverseSort
- 	"Arrange to have the array sorted in reverse order.
- 	WARNING: this method breaks the heap invariants. It's up to the sender to restore them afterwards."
- 	
- 	| oldTally |
- 	self deprecated: 'Use #sort if you want to sort.'.
- 	oldTally := tally.
- 	[tally > 1] whileTrue:
- 		[array swap: 1 with: tally.
- 		tally := tally - 1.
- 		self downHeapSingle: 1].
- 	tally := oldTally!

Squeak-dev mailing list -- [email protected]
To unsubscribe send an email to [email protected]
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.