ByteArray.st
changeset 20629 0fc29277f896
parent 20519 da1c421ea59c
child 20727 fb8c5591428b
child 21426 7ef931a354d0
--- a/ByteArray.st	Fri Oct 14 00:09:31 2016 +0200
+++ b/ByteArray.st	Fri Oct 14 00:09:37 2016 +0200
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 1989 by Claus Gittinger
 	      All Rights Reserved
@@ -42,8 +40,8 @@
 "
     ByteArrays store integers in the range 0..255.
     In contrast to normal arrays (which store pointers to their elements),
-    byteArrays store the values in a dense & compact way. ByteArrays can
-    be used to hold the data for bitmaps, images and other bulk data.
+    byteArrays store the values in a dense & compact way. 
+    ByteArrays can be used to hold the data for bitmaps, images and other bulk data.
     ByteArrays are also used to store the bytecode-instructions of an
     interpreted method and are used as superclass for Strings.
 
@@ -53,22 +51,22 @@
     As in: #( #[1 1 1] #[2 2 2] #[3 3 3])
 
     If you have to communicate structure-data (in the C-sense) with external
-    programs/data-bases, see a companion class (Structure) in the goodies directory.
+    programs/data-bases, see a companion class (Structure).
     It allows the definition of subclasses of ByteArray, which transparently fetch
     and store C-structure fields.
 
     [memory requirements:]
-	OBJ-HEADER + size
+        OBJ-HEADER + size
 
     [warning:]
-	read the warning about 'growing fixed size collection'
-	in ArrayedCollection's documentation
+        read the warning about 'growing fixed size collection'
+        in ArrayedCollection's documentation
 
     [author:]
-	Claus Gittinger
+        Claus Gittinger
 
     [See also:]
-	Array CharacterArray String
+        Array CharacterArray String
 "
 ! !
 
@@ -166,7 +164,6 @@
 ! !
 
 
-
 !ByteArray class methodsFor:'queries'!
 
 elementByteSize
@@ -201,7 +198,6 @@
     ^ 0
 ! !
 
-
 !ByteArray methodsFor:'Compatibility-Squeak'!
 
 bitXor:aByteArray
@@ -227,7 +223,6 @@
     "
 ! !
 
-
 !ByteArray methodsFor:'accessing'!
 
 basicAt:index
@@ -3131,7 +3126,6 @@
     "
 ! !
 
-
 !ByteArray methodsFor:'searching'!
 
 indexOf:aByte startingAt:start
@@ -3197,7 +3191,6 @@
     "
 ! !
 
-
 !ByteArray methodsFor:'testing'!
 
 isByteArray