BooleanArray.st
changeset 23977 016b84ce84cc
parent 20655 64d4a9341d67
--- a/BooleanArray.st	Tue Mar 26 11:54:05 2019 +0100
+++ b/BooleanArray.st	Tue Mar 26 11:54:08 2019 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1995 by Claus Gittinger
               All Rights Reserved
@@ -190,6 +192,7 @@
 
 atAllPut:aBoolean
     "replace all elements of the collection by the argument, aBoolean.
+     Return the receiver.
      The argument, aBoolean must be true or false.
      Notice: This operation modifies the receiver, NOT a copy;
      therefore the change may affect all others referencing the receiver."
@@ -207,6 +210,8 @@
         ]
     ].
     super atAllPut:v
+
+    "Modified (comment): / 26-03-2019 / 11:53:01 / Claus Gittinger"
 ! !
 
 !BooleanArray methodsFor:'queries'!