Collection.st
changeset 21319 2a40816cac19
parent 21309 7b7021e643a6
child 21387 e3865533e6a6
child 21404 261386ddadd9
--- a/Collection.st	Sat Jan 28 17:40:16 2017 +0100
+++ b/Collection.st	Sat Jan 28 18:01:37 2017 +0100
@@ -273,6 +273,7 @@
     ^ self newWithSize:n
 ! !
 
+
 !Collection class methodsFor:'Signal constants'!
 
 emptyCollectionSignal
@@ -549,6 +550,7 @@
     "Created: / 22-10-2008 / 21:29:27 / cg"
 ! !
 
+
 !Collection methodsFor:'accessing'!
 
 anElement
@@ -3639,12 +3641,12 @@
 !
 
 select:selectBlock thenCollect:collectBlock as:aCollectionClass
-    "return a new collection with all elements from the receiver, for which
-     the argument selectBlock evaluates to true.
+    "return a new collection with all elements from the receiver, 
+     for which the argument selectBlock evaluates to true.
      Process the elements through collectBlock before adding.
      Returns the same as if three separate collect+select+as: messages were sent,
-     but avoids the creation of intermediate collections, so this is nicer for
-     big collections."
+     but avoids the creation of intermediate collections, 
+     so this is nicer for big collections."
 
     |newCollection|
 
@@ -6010,6 +6012,7 @@
     ^ aVisitor visitCollection:self with:aParameter
 ! !
 
+
 !Collection class methodsFor:'documentation'!
 
 version