SequenceableCollection.st
changeset 17542 fd5a173afb50
parent 17487 7c7c65933390
child 17553 6d4e48b6091d
--- a/SequenceableCollection.st	Mon Feb 23 11:02:15 2015 +0100
+++ b/SequenceableCollection.st	Mon Feb 23 16:34:02 2015 +0100
@@ -8676,7 +8676,7 @@
 
 lastIdentityIndexOf:anElement
     "search the collection backwards for anElement;
-     if found, return the index otherwise return 0.
+     if found, return the index, otherwise return 0.
      The comparison is done using ==
      (i.e. identity test - not equality test)."
 
@@ -8686,7 +8686,7 @@
      args:    anElement      : <object>
 
      returns: elementIndex - if found
-	      0            - if not found
+              0            - if not found
     "
 
     "
@@ -8701,8 +8701,8 @@
 
 lastIdentityIndexOf:anElement ifAbsent:exceptionBlock
     "search the collection backwards for anElement;
-     if found, return the index otherwise return the value of the
-     exceptionBlock.
+     if found, return the index, 
+     otherwise return the value of the exceptionBlock.
      The comparison is done using ==
      (i.e. identity test - not equality test)."
 
@@ -8714,10 +8714,10 @@
 
     "
      args:    anElement      : <object>
-	      exceptionBlock : <valueImplementor>
+              exceptionBlock : <valueImplementor>
 
      returns: elementIndex         - if found
-	      exceptionBlock value - if not found
+              exceptionBlock value - if not found
     "
 
     "
@@ -8733,7 +8733,7 @@
 
 lastIdentityIndexOf:anElement startingAt:start
     "search the collection backwards for anElement, starting the search at index start;
-     if found, return the index otherwise return 0.
+     if found, return the index, otherwise return 0.
      The comparison is done using ==
      (i.e. identity test - not equality test)."
 
@@ -8741,16 +8741,16 @@
 
     startIndex := start.
     startIndex to:1 by:-1 do:[:index |
-	anElement == (self at:index) ifTrue:[^ index].
+        anElement == (self at:index) ifTrue:[^ index].
     ].
     ^ 0
 
     "
      args:    anElement      : <object>
-	      start          : <integer>
+              start          : <integer>
 
      returns: elementIndex - if found
-	      0            - if not found
+              0            - if not found
     "
 
     "
@@ -9816,11 +9816,11 @@
 !SequenceableCollection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/SequenceableCollection.st,v 1.398 2015-02-18 14:28:23 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/SequenceableCollection.st,v 1.399 2015-02-23 15:34:02 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/SequenceableCollection.st,v 1.398 2015-02-18 14:28:23 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/SequenceableCollection.st,v 1.399 2015-02-23 15:34:02 cg Exp $'
 ! !