#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Fri, 14 Oct 2016 00:30:26 +0200
changeset 20632 7c6a436e1c89
parent 20631 dde04b6a7222
child 20633 36988fb613e3
#DOCUMENTATION by cg class: OrderedSet comment/format in: #documentation
OrderedSet.st
--- a/OrderedSet.st	Fri Oct 14 00:11:07 2016 +0200
+++ b/OrderedSet.st	Fri Oct 14 00:30:26 2016 +0200
@@ -43,11 +43,12 @@
     That is, I have both Set behavior (only keeping a single instance of
     an element) but I also remember the original order, in which elements
     were added.
-
-    I have one additional instance variable:
+    Therefore, this combines fast access/check/add via hashing with a defined 
+    order when enumerating.
 
-    order <OrderedCollection>       Ordered collection of values reflecting the order 
-                                    in the set. 
+    [instance variables:]
+        order <OrderedCollection>       Ordered collection of values reflecting the order 
+                                        in the set. 
 
     [author:]
         Claus Gittinger
@@ -436,10 +437,10 @@
 !OrderedSet class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/OrderedSet.st,v 1.28 2015-02-04 19:59:46 stefan Exp $'
+    ^ '$Header$'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/OrderedSet.st,v 1.28 2015-02-04 19:59:46 stefan Exp $'
+    ^ '$Header$'
 ! !