ArrColl.st
changeset 628 7aa563e4c64a
parent 602 771ab7a8c4bf
child 916 a050d17c7e1f
equal deleted inserted replaced
627:0a9e18feab08 628:7aa563e4c64a
    55 	    Also note, that some other smalltalk systems do NOT allow
    55 	    Also note, that some other smalltalk systems do NOT allow
    56 	    fix size collection to change their size, and that future
    56 	    fix size collection to change their size, and that future
    57 	    ST/X versions may be changed to trigger an error (instead of a
    57 	    ST/X versions may be changed to trigger an error (instead of a
    58 	    warning) in those situations.
    58 	    warning) in those situations.
    59 "
    59 "
    60 !
       
    61 
       
    62 version
       
    63     ^ '$Header: /cvs/stx/stx/libbasic/Attic/ArrColl.st,v 1.27 1995-11-23 01:05:48 cg Exp $'
       
    64 ! !
    60 ! !
    65 
    61 
    66 !ArrayedCollection class methodsFor:'instance creation'!
    62 !ArrayedCollection class methodsFor:'instance creation'!
    67 
    63 
    68 with:element
    64 with:element
   309      (it is cought in SequencableCollection)"
   305      (it is cought in SequencableCollection)"
   310 
   306 
   311     ^ self basicSize
   307     ^ self basicSize
   312 ! !
   308 ! !
   313 
   309 
       
   310 !ArrayedCollection class methodsFor:'documentation'!
       
   311 
       
   312 version
       
   313     ^ '$Header: /cvs/stx/stx/libbasic/Attic/ArrColl.st,v 1.28 1995-11-23 16:57:30 cg Exp $'
       
   314 ! !