#OTHER by cg
authorClaus Gittinger <cg@exept.de>
Tue, 26 Mar 2019 11:54:08 +0100
changeset 23977 016b84ce84cc
parent 23976 16af24753c12
child 23978 c614c916260f
#OTHER by cg comment in atAllPut:
BooleanArray.st
--- 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'!