ByteArray.st
changeset 19942 141bc26e9fc1
parent 19936 335d0ad2a9a8
child 19948 be658f466bca
child 20071 1c3164fc850f
--- 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
 ! !