5 ArrayedCollection classMethod!
9 ArrayedCollection classMethod!
15 ArrayedCollection classMethod!
16 with: firstObject with: secondObject
18 at: 1 put: firstObject;
19 at: 2 put: secondObject;
22 ArrayedCollection classMethod!
23 with: firstObject with: secondObject with: thirdObject
25 at: 1 put: firstObject;
26 at: 2 put: secondObject;
27 at: 3 put: thirdObject;
30 ArrayedCollection classMethod!
31 with: firstObject with: secondObject with: thirdObject with: fourthObject
33 at: 1 put: firstObject;
34 at: 2 put: secondObject;
35 at: 3 put: thirdObject;
36 at: 4 put: fourthObject;
41 ArrayedCollection method!
43 ^ self shouldNotImplement!