#FEATURE by cg
authorClaus Gittinger <cg@exept.de>
Sat, 02 Mar 2019 23:17:53 +0100
changeset 23800 0f0470940b33
parent 23799 8076bb8b19ed
child 23801 7eabaea318f4
#FEATURE by cg class: ByteArray added: #isIntegerArray
ByteArray.st
--- a/ByteArray.st	Sat Mar 02 23:17:06 2019 +0100
+++ b/ByteArray.st	Sat Mar 02 23:17:53 2019 +0100
@@ -3261,6 +3261,15 @@
 
 !
 
+isIntegerArray
+    "return true if the receiver has integer elements.
+     These are Byte- and Integer arrays; both signed and unsigned"
+
+    ^ true
+
+    "Created: / 02-03-2019 / 23:11:00 / Claus Gittinger"
+!
+
 isLiteral
     "return true, if the receiver can be used as a literal constant in ST syntax
      (i.e. can be used in constant arrays)"