OrderedCollection.st
changeset 18183 3178ced76cfa
parent 18182 8504bb241a13
child 18184 b72a856332b8
--- a/OrderedCollection.st	Tue Mar 31 17:35:48 2015 +0200
+++ b/OrderedCollection.st	Thu Apr 02 03:23:45 2015 +0200
@@ -277,7 +277,6 @@
     "
 ! !
 
-
 !OrderedCollection methodsFor:'accessing'!
 
 at:anInteger
@@ -1579,8 +1578,9 @@
 makeRoomAtFront
     "grow/shift the contents for more room at the beginning.
      Does not change the logical size.
-     i.e.
-     #(1 2 3 4 5 6) -> #(nil 1 2 3 4 5 6)"
+     i.e. the contents array is changed from:
+        #(1 2 3 4 5 6) -> #(nil 1 2 3 4 5 6)
+     and the start/stopIndices are adjusted as required"
 
     |newContents
      oldSize    "{ Class:SmallInteger }"
@@ -2147,10 +2147,10 @@
 !OrderedCollection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/OrderedCollection.st,v 1.117 2015-03-31 15:35:48 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/OrderedCollection.st,v 1.118 2015-04-02 01:23:45 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/OrderedCollection.st,v 1.117 2015-03-31 15:35:48 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/OrderedCollection.st,v 1.118 2015-04-02 01:23:45 cg Exp $'
 ! !