diff -r 3abde2c376de -r 15ba3221b89b OrderedCollection.st --- a/OrderedCollection.st Thu Apr 25 18:12:44 1996 +0200 +++ b/OrderedCollection.st Thu Apr 25 18:20:46 1996 +0200 @@ -38,11 +38,17 @@ OrderedCollection have ordered elements. Insertion and removal at both ends is possible - therefore they can be used for queues and stacks. - Instance variables: + [Instance variables:] + + contentsArray the actual contents + firstIndex index of first valid element + lastIndex index of last valid element - contentsArray the actual contents - firstIndex index of first valid element - lastIndex index of last valid element + [see also:] + Array + + [author:] + Claus Gittinger " ! ! @@ -1304,5 +1310,5 @@ !OrderedCollection class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/OrderedCollection.st,v 1.46 1996-04-19 10:47:25 cg Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/OrderedCollection.st,v 1.47 1996-04-25 16:15:26 cg Exp $' ! !