# HG changeset patch # User Jan Vrany # Date 1594327729 -3600 # Node ID 11c625b9ecca3399ba3c6fbdb9b5ee3ed37b7a9b # Parent b1402d9b1f3976c257d0523013d29897b2b81b04 Add `SortedSet >> sort:` diff -r b1402d9b1f39 -r 11c625b9ecca SortedSet.st --- a/SortedSet.st Wed Apr 24 12:02:49 2019 +0100 +++ b/SortedSet.st Thu Jul 09 21:48:49 2020 +0100 @@ -1,5 +1,6 @@ " COPYRIGHT (c) 2012 by eXept Software AG + COPYRIGHT (c) 2020 LabWare All Rights Reserved This software is furnished under a license and may be used @@ -25,6 +26,7 @@ copyright " COPYRIGHT (c) 2012 by eXept Software AG + COPYRIGHT (c) 2020 LabWare All Rights Reserved This software is furnished under a license and may be used @@ -209,6 +211,17 @@ "Created: / 06-08-2012 / 12:35:07 / cg" ! ! +!SortedSet methodsFor:'sorting & reordering'! + +sort:aSortBlock + "Destructively sort my order. + WARNING: this is a destructive operation, which modifies the receiver" + + order sortBlock:aSortBlock + + "Created: / 09-07-2020 / 20:37:01 / Jan Vrany " +! ! + !SortedSet class methodsFor:'documentation'! version @@ -217,5 +230,10 @@ version_CVS ^ '$Header$' +! + +version_HG + + ^ '$Changeset: $' ! !