SortedCollection.st
changeset 5048 b1e10ce753fd
parent 5030 655a0f0a60c3
child 5359 396b77b6f1d2
--- a/SortedCollection.st	Thu Dec 02 11:50:58 1999 +0100
+++ b/SortedCollection.st	Thu Dec 02 12:22:34 1999 +0100
@@ -765,7 +765,8 @@
 occurrencesOf:anObject
     "return how many times the argument, anObject is in the collection.
      Redefined, since due to being sorted, the range of checked objects
-     can be limited i.e. it can be done much faster."
+     can be limited i.e. it can be done much faster.
+      Uses #= (i.e. equality) compare."
 
     |index      "{ Class: SmallInteger }"
      tally      "{ Class: SmallInteger }"
@@ -796,6 +797,6 @@
 !SortedCollection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/SortedCollection.st,v 1.42 1999-11-29 16:32:05 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/SortedCollection.st,v 1.43 1999-12-02 11:21:49 cg Exp $'
 ! !
 SortedCollection initialize!