OrderedCollection.st
changeset 1290 15ba3221b89b
parent 1221 46d72af387e9
child 1321 52e043fb7eaf
equal deleted inserted replaced
1289:3abde2c376de 1290:15ba3221b89b
    36 documentation
    36 documentation
    37 "
    37 "
    38     OrderedCollection have ordered elements. Insertion and removal at both ends
    38     OrderedCollection have ordered elements. Insertion and removal at both ends
    39     is possible - therefore they can be used for queues and stacks.
    39     is possible - therefore they can be used for queues and stacks.
    40 
    40 
    41     Instance variables:
    41     [Instance variables:]
    42 
    42 
    43     contentsArray   <Array>         the actual contents
    43         contentsArray   <Array>         the actual contents
    44     firstIndex      <SmallInteger>  index of first valid element
    44         firstIndex      <SmallInteger>  index of first valid element
    45     lastIndex       <SmallInteger>  index of last valid element
    45         lastIndex       <SmallInteger>  index of last valid element
       
    46 
       
    47     [see also:]
       
    48         Array
       
    49 
       
    50     [author:]
       
    51         Claus Gittinger
    46 "
    52 "
    47 ! !
    53 ! !
    48 
    54 
    49 !OrderedCollection class methodsFor:'instance creation'!
    55 !OrderedCollection class methodsFor:'instance creation'!
    50 
    56 
  1302 ! !
  1308 ! !
  1303 
  1309 
  1304 !OrderedCollection class methodsFor:'documentation'!
  1310 !OrderedCollection class methodsFor:'documentation'!
  1305 
  1311 
  1306 version
  1312 version
  1307     ^ '$Header: /cvs/stx/stx/libbasic/OrderedCollection.st,v 1.46 1996-04-19 10:47:25 cg Exp $'
  1313     ^ '$Header: /cvs/stx/stx/libbasic/OrderedCollection.st,v 1.47 1996-04-25 16:15:26 cg Exp $'
  1308 ! !
  1314 ! !