Array.st
changeset 626 f359cb7eba58
parent 588 ec7e2bc63d77
child 788 e80f1c42b87b
equal deleted inserted replaced
625:5f45ffc4cdd4 626:f359cb7eba58
    59 	#('foo' 2 (1 2) 4)     
    59 	#('foo' 2 (1 2) 4)     
    60 	#('foo' #(1 2))        
    60 	#('foo' #(1 2))        
    61 	#('foo' nil true #true)
    61 	#('foo' nil true #true)
    62 	#('one' two [3 3 3] (4 4 4))
    62 	#('one' two [3 3 3] (4 4 4))
    63 "
    63 "
    64 !
    64 ! !
    65 
       
    66 version
       
    67 ^ '$Header: /cvs/stx/stx/libbasic/Array.st,v 1.47 1995-11-21 10:20:58 cg Exp $'! !
       
    68 
    65 
    69 !Array class methodsFor:'instance creation'!
    66 !Array class methodsFor:'instance creation'!
    70 
    67 
    71 basicNew:anInteger
    68 basicNew:anInteger
    72     "return an instance of myself with anInteger indexed variables.
    69     "return an instance of myself with anInteger indexed variables.
  1318     }
  1315     }
  1319 %}.
  1316 %}.
  1320     ^ 0
  1317     ^ 0
  1321 ! !
  1318 ! !
  1322 
  1319 
       
  1320 !Array class methodsFor:'documentation'!
       
  1321 
       
  1322 version
       
  1323 ^ '$Header: /cvs/stx/stx/libbasic/Array.st,v 1.48 1995-11-23 16:51:57 cg Exp $'! !