ReindexedCollection.st
changeset 3687 2c6d35ee488d
parent 3020 a88b56ea6629
child 3783 fcc30a3af3df
equal deleted inserted replaced
3685:01ebbac96899 3687:2c6d35ee488d
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 "{ Package: 'stx:libbasic2' }"
    12 "{ Package: 'stx:libbasic2' }"
       
    13 
       
    14 "{ NameSpace: Smalltalk }"
    13 
    15 
    14 SequenceableCollection subclass:#ReindexedCollection
    16 SequenceableCollection subclass:#ReindexedCollection
    15 	instanceVariableNames:'sequence interval'
    17 	instanceVariableNames:'sequence interval'
    16 	classVariableNames:''
    18 	classVariableNames:''
    17 	poolDictionaries:''
    19 	poolDictionaries:''
   319 
   321 
   320 species
   322 species
   321     "Answer the preferred class for reconstructing the receiver, that is, the sequence."
   323     "Answer the preferred class for reconstructing the receiver, that is, the sequence."
   322 
   324 
   323     ^ sequence species
   325     ^ sequence species
       
   326 !
       
   327 
       
   328 speciesForAdding
       
   329     "Answer the preferred class for reconstructing the receiver incrementally"
       
   330 
       
   331     ^ sequence speciesForAdding
   324 ! !
   332 ! !
   325 
   333 
   326 !ReindexedCollection class methodsFor:'documentation'!
   334 !ReindexedCollection class methodsFor:'documentation'!
   327 
   335 
   328 version
   336 version
   329     ^ '$Header: /cvs/stx/stx/libbasic2/ReindexedCollection.st,v 1.8 2013-06-25 11:23:58 cg Exp $'
   337     ^ '$Header$'
   330 ! !
   338 ! !
   331 
   339