BooleanArray.st
changeset 906 30c1ab2aee8d
parent 905 d6fced2d6d12
child 907 4ef63236d698
--- a/BooleanArray.st	Tue Aug 22 15:52:00 2000 +0200
+++ b/BooleanArray.st	Tue Aug 22 15:57:19 2000 +0200
@@ -188,12 +188,6 @@
 
     "Modified: / 31.7.1997 / 18:37:35 / cg"
     "Modified: / 23.5.1999 / 20:02:42 / stefan"
-!
-
-size
-    "return the size of the receiver"
-
-    ^ tally
 ! !
 
 !BooleanArray methodsFor:'filling & replacing'!
@@ -214,8 +208,16 @@
     tally := size
 ! !
 
+!BooleanArray methodsFor:'queries'!
+
+size
+    "return the size of the receiver"
+
+    ^ tally
+! !
+
 !BooleanArray class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/BooleanArray.st,v 1.8 2000-08-22 13:52:00 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/BooleanArray.st,v 1.9 2000-08-22 13:56:06 cg Exp $'
 ! !