-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Description
printOn: aStream
aStream nextPutAll: '('.
(1 to: self numberOfRows)
do: [ :r |
(self atRow: r)
do: [ :each | aStream nextPutAll: each printString ]
separatedBy: [ aStream space ]]
separatedBy: [ aStream cr ].
aStream nextPutAll: ' )'.
but without the printString please!!!
storeOn: aStream
aStream nextPut: $(; nextPutAll: self class name;
nextPutAll: ' rows: '; store: numberOfRows;
nextPutAll: ' columns: '; store: numberOfColumns;
nextPutAll: ' contents: '; store: contents;
nextPut: $)
Metadata
Metadata
Assignees
Labels
No labels