#FEATURE by cg
authorClaus Gittinger <cg@exept.de>
Sat, 02 Mar 2019 23:15:13 +0100
changeset 23796 72db4bb61aaf
parent 23795 cdb4f82cb732
child 23797 119ce5d12f09
#FEATURE by cg class: Object added: #isFloatArray
Object.st
--- a/Object.st	Sat Mar 02 23:12:16 2019 +0100
+++ b/Object.st	Sat Mar 02 23:15:13 2019 +0100
@@ -9920,6 +9920,15 @@
     "Modified: / 14.11.2001 / 14:57:46 / cg"
 !
 
+isFloatArray
+    "return true if the receiver has float elements.
+     These are Float, Double- and HalfFloat arrays"
+
+    ^ false
+
+    "Created: / 02-03-2019 / 23:14:46 / Claus Gittinger"
+!
+
 isForm
     "return true if the receiver is some kind of form;
      false is returned here - the method is only redefined in Form."