SequenceableCollection.st
changeset 244 9faa2da0650a
parent 233 98f588af201a
child 252 cf6eef7703ad
--- a/SequenceableCollection.st	Sat Feb 11 15:08:47 1995 +0100
+++ b/SequenceableCollection.st	Sat Feb 11 15:09:04 1995 +0100
@@ -21,7 +21,7 @@
 COPYRIGHT (c) 1989 by Claus Gittinger
 	      All Rights Reserved
 
-$Header: /cvs/stx/stx/libbasic/SequenceableCollection.st,v 1.18 1995-02-05 21:33:50 claus Exp $
+$Header: /cvs/stx/stx/libbasic/SequenceableCollection.st,v 1.19 1995-02-11 14:08:54 claus Exp $
 '!
 
 !SequenceableCollection class methodsFor:'documentation'!
@@ -42,7 +42,7 @@
 
 version
 "
-$Header: /cvs/stx/stx/libbasic/SequenceableCollection.st,v 1.18 1995-02-05 21:33:50 claus Exp $
+$Header: /cvs/stx/stx/libbasic/SequenceableCollection.st,v 1.19 1995-02-11 14:08:54 claus Exp $
 "
 !
 
@@ -1217,6 +1217,7 @@
     "
      #(1 2 3 4 5 6) findFirst:[:x | (x >= 3)]
      #(1 2 3 4 5 6) findFirst:[:x | (x >= 3) and:[x even]]
+     #(1 2 3 4 5 6) findFirst:[:x | (x >= 8)]           
      'one.two.three' findFirst:[:c | (c == $.)]
     "
 !
@@ -1689,7 +1690,7 @@
     ].
     1 to:sz do:[:index |
 	element := self at:index.
-	(aBlock value:element) ifTrue:[
+        (aBlock value:element) ifTrue:[
 	    newColl add:element
 	].
     ].