ByteArray.st
branchjv
changeset 18971 13360506ef81
parent 18678 a9b30d72dff9
parent 18966 3bc73a4cdae6
child 19054 80cbbad08d0c
--- a/ByteArray.st	Tue Dec 01 06:37:23 2015 +0100
+++ b/ByteArray.st	Thu Dec 03 06:57:19 2015 +0100
@@ -164,6 +164,7 @@
 ! !
 
 
+
 !ByteArray class methodsFor:'queries'!
 
 elementByteSize
@@ -184,6 +185,7 @@
     "Modified: 23.4.1996 / 15:56:25 / cg"
 ! !
 
+
 !ByteArray methodsFor:'Compatibility-Squeak'!
 
 bitXor:aByteArray
@@ -2750,6 +2752,13 @@
     "
 !
 
+containsNon8BitElements
+    "return true, if one of my elements is larger than a single byte.
+     Per definition not."
+
+    ^ false.
+!
+
 max
     "return the maximum value in the receiver -
      redefined to speedup image processing and sound-player
@@ -2914,6 +2923,7 @@
     "
 ! !
 
+
 !ByteArray methodsFor:'searching'!
 
 indexOf:aByte startingAt:start
@@ -2979,6 +2989,7 @@
     "
 ! !
 
+
 !ByteArray methodsFor:'testing'!
 
 isByteArray