SequenceableCollection.st
changeset 5443 a16da4e95ddd
parent 5391 47cae5f97981
child 5446 e5ecc71d3054
--- a/SequenceableCollection.st	Mon Jul 03 15:07:40 2000 +0200
+++ b/SequenceableCollection.st	Wed Jul 05 15:08:49 2000 +0200
@@ -3443,6 +3443,8 @@
      #(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 == $.)]
+     '__one.two.three' findFirst:[:c | (c ~= $_)] 
+     'one.two.three' findFirst:[:c | (c ~= $_)] 
     "
 
     "Modified: / 21.10.1998 / 18:48:10 / cg"
@@ -4933,6 +4935,6 @@
 !SequenceableCollection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/SequenceableCollection.st,v 1.133 2000-05-19 15:20:08 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/SequenceableCollection.st,v 1.134 2000-07-05 13:08:49 cg Exp $'
 ! !
 SequenceableCollection initialize!