ReindexedCollection.st
changeset 3020 a88b56ea6629
parent 2931 0c2ab359a232
child 3687 2c6d35ee488d
--- a/ReindexedCollection.st	Tue Jun 25 13:23:55 2013 +0200
+++ b/ReindexedCollection.st	Tue Jun 25 13:23:58 2013 +0200
@@ -311,6 +311,12 @@
 
 !ReindexedCollection methodsFor:'queries'!
 
+isFixedSize
+    "return true if the receiver cannot grow"
+
+    ^ sequence isFixedSize
+!
+
 species
     "Answer the preferred class for reconstructing the receiver, that is, the sequence."
 
@@ -320,6 +326,6 @@
 !ReindexedCollection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/ReindexedCollection.st,v 1.7 2013-03-19 09:22:38 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/ReindexedCollection.st,v 1.8 2013-06-25 11:23:58 cg Exp $'
 ! !