category change
authorClaus Gittinger <cg@exept.de>
Tue, 22 Aug 2000 15:52:00 +0200
changeset 905 d6fced2d6d12
parent 904 f4791de2295b
child 906 30c1ab2aee8d
category change
BooleanArray.st
--- a/BooleanArray.st	Tue Aug 22 15:49:22 2000 +0200
+++ b/BooleanArray.st	Tue Aug 22 15:52:00 2000 +0200
@@ -24,6 +24,8 @@
  SUCH DAMAGE.
 "
 
+"{ Package: 'stx:libbasic2' }"
+
 ArrayedCollection variableByteSubclass:#BooleanArray
 	instanceVariableNames:'tally'
 	classVariableNames:''
@@ -188,6 +190,14 @@
     "Modified: / 23.5.1999 / 20:02:42 / stefan"
 !
 
+size
+    "return the size of the receiver"
+
+    ^ tally
+! !
+
+!BooleanArray methodsFor:'filling & replacing'!
+
 atAllPut:aBoolean
     |v|
 
@@ -196,12 +206,6 @@
         super basicAt:i put:v
     ].
         
-!
-
-size
-    "return the size of the receiver"
-
-    ^ tally
 ! !
 
 !BooleanArray methodsFor:'private'!
@@ -213,5 +217,5 @@
 !BooleanArray class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/BooleanArray.st,v 1.7 1999-11-30 12:25:56 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/BooleanArray.st,v 1.8 2000-08-22 13:52:00 cg Exp $'
 ! !