ArrayedCollection.st
changeset 14615 4e5318533a06
parent 14112 9fc40252441e
child 15855 02483477abfc
child 18011 deb0c3355881
equal deleted inserted replaced
14614:6b02772b261d 14615:4e5318533a06
   353 ! !
   353 ! !
   354 
   354 
   355 !ArrayedCollection methodsFor:'copying'!
   355 !ArrayedCollection methodsFor:'copying'!
   356 
   356 
   357 copyEmptyAndGrow:size
   357 copyEmptyAndGrow:size
   358     "return a new instance of the receivers species with size
   358     "return a new instance of the receiver's species with size
   359      nilled elements and any named instance variables copied."
   359      nilled elements and any named instance variables copied."
   360 
   360 
   361     "Performance optimization for classes like Array, String, ...,
   361     "Performance optimization for classes like Array, String, ...,
   362      which have no named instance vars"
   362      which have no named instance vars"
   363 
   363 
   500 ! !
   500 ! !
   501 
   501 
   502 !ArrayedCollection class methodsFor:'documentation'!
   502 !ArrayedCollection class methodsFor:'documentation'!
   503 
   503 
   504 version
   504 version
   505     ^ '$Header: /cvs/stx/stx/libbasic/ArrayedCollection.st,v 1.63 2012-04-21 15:45:38 stefan Exp $'
   505     ^ '$Header: /cvs/stx/stx/libbasic/ArrayedCollection.st,v 1.64 2012-12-21 11:58:50 cg Exp $'
   506 ! !
   506 ! !
       
   507