SequenceableCollection.st
branchjv
changeset 17922 701184329b01
parent 17910 8d796ca8bd1d
child 17928 8e8dad2e6269
--- a/SequenceableCollection.st	Mon Feb 13 19:19:41 2012 +0000
+++ b/SequenceableCollection.st	Tue Feb 14 22:03:08 2012 +0000
@@ -3103,7 +3103,8 @@
     "return a new collection formed from concatenating the receiver with
      the argument. The class of the new collection is determined by the
      receivers class, so mixing classes is possible, if the second collections
-     elements can be stored into instances of the receivers class."
+     elements can be stored into instances of the receivers class.
+     This is just syntactic sugar for javascript"
 
     ^ self , aCollection
 
@@ -3115,6 +3116,8 @@
      'abc' ++ #(1 2 3 4 5)"  "-- will fail, since strings cannot store integers
      'abc' asArray ++ #(1 2 3 4 5)
     "
+
+    "Modified (comment): / 14-02-2012 / 14:17:11 / cg"
 !
 
 , aCollection
@@ -7989,13 +7992,14 @@
 !SequenceableCollection class methodsFor:'documentation'!
 
 version_CVS
-    ^ 'Header: /cvs/stx/stx/libbasic/SequenceableCollection.st,v 1.311 2012/01/18 10:30:08 cg Exp '
+    ^ 'Header: /cvs/stx/stx/libbasic/SequenceableCollection.st,v 1.312 2012/02/14 13:22:17 cg Exp '
 !
 
 version_SVN
-    ^ '$Id: SequenceableCollection.st 10758 2012-01-19 10:06:02Z vranyj1 $'
+    ^ '$Id: SequenceableCollection.st 10779 2012-02-14 22:03:08Z vranyj1 $'
 ! !
 
 SequenceableCollection initialize!
 
 
+