SequenceableCollection.st
changeset 20995 349208d3c913
parent 20977 733dba5117a0
child 21026 81e280fc1b93
child 21039 49823ec25298
--- a/SequenceableCollection.st	Fri Nov 18 16:25:05 2016 +0100
+++ b/SequenceableCollection.st	Sat Nov 19 13:05:12 2016 +0100
@@ -448,6 +448,7 @@
     ^ self == SequenceableCollection
 ! !
 
+
 !SequenceableCollection methodsFor:'Compatibility-Squeak'!
 
 allButFirst
@@ -7877,6 +7878,7 @@
     "Created: 14.2.1997 / 16:13:03 / cg"
 ! !
 
+
 !SequenceableCollection methodsFor:'searching'!
 
 detect:aBlock startingAt:startIndex
@@ -8758,9 +8760,9 @@
 !
 
 nextIndexOf:anElement from:start to:stop
-    "search the collection for anElement, starting the search at index start,
-     stopping at:stop;
-     if found, return the index otherwise return 0.
+    "search the collection for anElement, 
+     starting the search at index start, stopping at:stop.
+     If found, return the index; otherwise return 0.
      The comparison is done using =
      (i.e. equality test - not identity test)."
 
@@ -8790,6 +8792,7 @@
     "
 
     "Modified: / 23-09-2011 / 14:03:05 / cg"
+    "Modified (comment): / 19-11-2016 / 13:04:56 / cg"
 !
 
 nextIndexOf:anElement from:start to:stop ifAbsent:exceptionBlock