#OTHER by cg
authorClaus Gittinger <cg@exept.de>
Sun, 09 Jun 2019 14:55:26 +0200
changeset 24311 196e4a37ae7a
parent 24310 80e6b5fa6041
child 24312 7bb5c478d08b
#OTHER by cg x
ImmutableArray.st
--- a/ImmutableArray.st	Sun Jun 09 14:55:22 2019 +0200
+++ b/ImmutableArray.st	Sun Jun 09 14:55:26 2019 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1995 by Claus Gittinger
 	      All Rights Reserved
@@ -207,7 +209,12 @@
 !ImmutableArray methodsFor:'queries'!
 
 isImmutable
+    "return true, if the receiver is immutable.
+     Since I am an immutable array, return always true here"
+
     ^ true
+
+    "Modified (comment): / 09-06-2019 / 14:54:41 / Claus Gittinger"
 !
 
 isLiteral