#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Sun, 05 Jun 2016 09:53:28 +0200
changeset 19942 141bc26e9fc1
parent 19941 7ccda5e648bc
child 19943 6f8e2d23fdae
#DOCUMENTATION by cg class: ByteArray comment/format in: #asByteString #maxVal #minVal
ByteArray.st
--- a/ByteArray.st	Sun Jun 05 09:52:47 2016 +0200
+++ b/ByteArray.st	Sun Jun 05 09:53:28 2016 +0200
@@ -185,13 +185,15 @@
 !
 
 maxVal
-    "the minimum value which can be stored in instances of me"
+    "the minimum value which can be stored in instances of me.
+     For ByteArrays, this is 255"
 
     ^ 255
 !
 
 minVal
-    "the minimum value which can be stored in instances of me"
+    "the minimum value which can be stored in instances of me.
+     For ByteArrays, this is 0"
 
     ^ 0
 ! !
@@ -224,6 +226,8 @@
 !ByteArray methodsFor:'Compatibility-VW'!
 
 asByteString
+    "same as asString, for visualworks compatibility"
+    
     ^ self asString
 ! !