#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Mon, 13 Feb 2017 20:08:10 +0100
changeset 21426 7ef931a354d0
parent 21425 442d1707b700
child 21427 26521b634779
#DOCUMENTATION by cg class: ByteArray comment/format in: #unsignedInt16At:MSB:
ByteArray.st
--- a/ByteArray.st	Mon Feb 13 20:07:32 2017 +0100
+++ b/ByteArray.st	Mon Feb 13 20:08:10 2017 +0100
@@ -164,6 +164,9 @@
 ! !
 
 
+
+
+
 !ByteArray class methodsFor:'queries'!
 
 elementByteSize
@@ -198,6 +201,8 @@
     ^ 0
 ! !
 
+
+
 !ByteArray methodsFor:'Compatibility-Squeak'!
 
 bitXor:aByteArray
@@ -223,6 +228,7 @@
     "
 ! !
 
+
 !ByteArray methodsFor:'accessing'!
 
 basicAt:index
@@ -720,7 +726,7 @@
 unsignedInt16At:index MSB:msb
     "return the 2-bytes starting at index as an (unsigned) Integer.
      The value is retrieved MSB (high 8 bits at lower index) if msb is true;
-     LSB-first (i.e. low 8-bits at lower byte index) if its false.
+     LSB-first (i.e. low 8-bits at lower byte index) if it's false.
      Notice: 
         the index is a byte index; thus, this allows for unaligned access to
         words on any boundary.
@@ -789,6 +795,8 @@
     }
 %}.
     ^ super unsignedInt16At:index MSB:msb
+
+    "Modified (comment): / 13-02-2017 / 19:56:53 / cg"
 !
 
 unsignedInt16At:index put:value
@@ -3126,6 +3134,7 @@
     "
 ! !
 
+
 !ByteArray methodsFor:'searching'!
 
 indexOf:aByte startingAt:start
@@ -3191,6 +3200,7 @@
     "
 ! !
 
+
 !ByteArray methodsFor:'testing'!
 
 isByteArray
@@ -3215,6 +3225,7 @@
     "Modified: 22.4.1996 / 12:55:30 / cg"
 ! !
 
+
 !ByteArray class methodsFor:'documentation'!
 
 version