#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Sun, 05 Jun 2016 09:52:57 +0200
changeset 3879 0b5011fc50ef
parent 3878 8c30e6e6d334
child 3880 981c4604c1ce
#DOCUMENTATION by cg class: WordArray comment/format in: #maxVal #minVal
WordArray.st
--- a/WordArray.st	Sun Jun 05 09:52:44 2016 +0200
+++ b/WordArray.st	Sun Jun 05 09:52:57 2016 +0200
@@ -77,13 +77,15 @@
 !
 
 maxVal
-    "the maximum value which can be stored in instances of me"
+    "the maximum value which can be stored in instances of me.
+     For WordArrays, this is 16rFFFF (largest 16bit unsigned int)"
 
     ^ 16rFFFF
 !
 
 minVal
-    "the minimum value which can be stored in instances of me"
+    "the minimum value which can be stored in instances of me.
+     For WordArrays, this is 0"
 
     ^ 0
 ! !
@@ -128,5 +130,9 @@
 
 version
     ^ '$Header$'
+!
+
+version_CVS
+    ^ '$Header$'
 ! !