|
|
6.3 Array
- Defined in namespace Smalltalk
- Category: Collections-Sequenceable
- My instances are objects that have array-like properties: they are directly
indexable by integers starting at 1, and they are fixed in size. I inherit
object creation behavior messages such as #with:, as well as iteration
and general access behavior from SequenceableCollection.
6.3.1 Array: mutating objects
- multiBecome: anArray
- Transform every object in the receiver in each corresponding object in anArray. anArray and the receiver must have the same size
6.3.2 Array: printing
- printOn: aStream
- Print a representation for the receiver on aStream
6.3.3 Array: testing
- isArray
- Answer `true'.
|