ArrayedCollection.st
changeset 1164 38c54a4f1273
parent 1111 d8e423b7d5a1
child 1171 7b8924ce3424
--- a/ArrayedCollection.st	Fri Apr 12 18:52:24 1996 +0200
+++ b/ArrayedCollection.st	Fri Apr 12 18:55:03 1996 +0200
@@ -265,7 +265,8 @@
 !
 
 removeAll
-    "remove all elements from the receiver.
+    "remove all elements from the receiver. Returns the receiver.
+
      For ArrayedCollections (which are actually fixed-size collections),
      this is a slow operation, since a #become: is required to update
      all owners. Better use a collection which is prepared for growing
@@ -282,7 +283,7 @@
      #(1 2 3 4 5) removeAll    
     "
 
-    "Modified: 21.3.1996 / 15:28:08 / cg"
+    "Modified: 12.4.1996 / 13:34:21 / cg"
 ! !
 
 !ArrayedCollection methodsFor:'testing'!
@@ -311,5 +312,5 @@
 !ArrayedCollection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ArrayedCollection.st,v 1.31 1996-03-21 14:29:19 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ArrayedCollection.st,v 1.32 1996-04-12 16:53:29 cg Exp $'
 ! !