Collection.st
changeset 9247 efee0d15fb2c
parent 9159 05d0861b938b
child 9309 d1fe8655bb97
--- a/Collection.st	Mon Mar 06 11:05:45 2006 +0100
+++ b/Collection.st	Mon Mar 06 11:05:58 2006 +0100
@@ -2867,6 +2867,12 @@
 
 !
 
+isWeakCollection
+    "return true, if the receiver has weak references to its elements."
+
+    ^ false
+!
+
 notEmpty
     "return true, if the receiver is not empty"
 
@@ -2935,7 +2941,7 @@
 !Collection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Collection.st,v 1.185 2006-02-20 21:28:50 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Collection.st,v 1.186 2006-03-06 10:05:58 cg Exp $'
 ! !
 
 Collection initialize!