SequenceableCollection.st
changeset 1289 3abde2c376de
parent 1245 c8afea3d5af0
child 1359 5ff95f3f0baf
equal deleted inserted replaced
1288:9f6420305017 1289:3abde2c376de
    37 "
    37 "
    38     SequenceableCollections have ordered elements which can be accessed via
    38     SequenceableCollections have ordered elements which can be accessed via
    39     a numeric index. 
    39     a numeric index. 
    40     SequenceableCollection is an abstract class - there are no instances of 
    40     SequenceableCollection is an abstract class - there are no instances of 
    41     it in the system. See concrete subclasses (such as OrderedCollection).
    41     it in the system. See concrete subclasses (such as OrderedCollection).
       
    42 
       
    43     [author:]
       
    44         Claus Gittinger
    42 "
    45 "
    43 ! !
    46 ! !
    44 
    47 
    45 !SequenceableCollection class methodsFor:'instance creation'!
    48 !SequenceableCollection class methodsFor:'instance creation'!
    46 
    49 
  2543 ! !
  2546 ! !
  2544 
  2547 
  2545 !SequenceableCollection class methodsFor:'documentation'!
  2548 !SequenceableCollection class methodsFor:'documentation'!
  2546 
  2549 
  2547 version
  2550 version
  2548     ^ '$Header: /cvs/stx/stx/libbasic/SequenceableCollection.st,v 1.55 1996-04-22 11:03:32 cg Exp $'
  2551     ^ '$Header: /cvs/stx/stx/libbasic/SequenceableCollection.st,v 1.56 1996-04-25 16:12:25 cg Exp $'
  2549 ! !
  2552 ! !