SequenceableCollection.st
changeset 10439 6b69b2ecb04c
parent 10385 5a2e22929fc8
child 10453 107b33e0ece6
--- a/SequenceableCollection.st	Tue Mar 06 11:56:11 2007 +0100
+++ b/SequenceableCollection.st	Tue Mar 06 17:01:12 2007 +0100
@@ -4165,19 +4165,17 @@
      therefore the change may affect all others referencing the receiver."
 
     ^ self
-	replaceAny:aCollection
-	with:newObject
-	from:1
-	to:self size
-
-    "
-     args:    aCollection    : <colleciton of <object> >
-	      newObject      : <object>
-
-     returns: self
-    "
-
-    "Modified: / 20.5.1998 / 15:25:58 / cg"
+        replaceAny:aCollection
+        with:newObject
+        from:1
+        to:self size
+
+    "
+     #(1 2 3 4 5 6 7 1 2 3 4 5 6 7) copy replaceAny:#(1 3 5 9) with:99
+     'abcdefgabcdefg' copy replaceAny:'abx' with:$_  
+    "
+
+    "Modified: / 06-03-2007 / 17:01:01 / cg"
 !
 
 replaceAny:aCollection with:newObject from:startIndex to:stopIndex
@@ -6954,7 +6952,7 @@
 !SequenceableCollection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/SequenceableCollection.st,v 1.242 2007-02-12 08:46:31 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/SequenceableCollection.st,v 1.243 2007-03-06 16:01:12 cg Exp $'
 ! !
 
 SequenceableCollection initialize!