OrdColl.st
changeset 114 0353ec6749c8
parent 93 e31220cb391f
child 159 514c749165c3
--- a/OrdColl.st	Mon Aug 22 14:10:19 1994 +0200
+++ b/OrdColl.st	Mon Aug 22 14:11:03 1994 +0200
@@ -21,7 +21,7 @@
 COPYRIGHT (c) 1989 by Claus Gittinger
               All Rights Reserved
 
-$Header: /cvs/stx/stx/libbasic/Attic/OrdColl.st,v 1.14 1994-08-05 00:59:17 claus Exp $
+$Header: /cvs/stx/stx/libbasic/Attic/OrdColl.st,v 1.15 1994-08-22 12:11:03 claus Exp $
 '!
 
 !OrderedCollection class methodsFor:'documentation'!
@@ -42,7 +42,7 @@
 
 version
 "
-$Header: /cvs/stx/stx/libbasic/Attic/OrdColl.st,v 1.14 1994-08-05 00:59:17 claus Exp $
+$Header: /cvs/stx/stx/libbasic/Attic/OrdColl.st,v 1.15 1994-08-22 12:11:03 claus Exp $
 "
 !
 
@@ -264,6 +264,12 @@
     ^ exceptionBlock value
 !
 
+removeAll
+    "remove all elements from the collection."
+
+    self initContents:10
+!
+
 add:anObject
     "add the argument, anObject to the end of the collection
      Return the argument, anObject."