#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Sun, 05 Jun 2016 09:53:36 +0200
changeset 3880 981c4604c1ce
parent 3879 0b5011fc50ef
child 3881 16890fe7ef2e
#DOCUMENTATION by cg class: BitArray comment/format in: #maxVal #minVal
BitArray.st
--- a/BitArray.st	Sun Jun 05 09:52:57 2016 +0200
+++ b/BitArray.st	Sun Jun 05 09:53:36 2016 +0200
@@ -155,13 +155,15 @@
 !BitArray class methodsFor:'queries'!
 
 maxVal
-    "the minimum value which can be stored in instances of me"
+    "the minimum value which can be stored in instances of me.
+     For BitArrays, this is 1"
 
     ^ 1
 !
 
 minVal
-    "the minimum value which can be stored in instances of me"
+    "the minimum value which can be stored in instances of me.
+     For BitArrays, this is 0"
 
     ^ 0
 ! !