2024-02-04 23:15:29 +00:00
|
|
|
accessing
|
|
|
|
instanceRows
|
|
|
|
^ (self instances at: 'hosts') collect: [:rawRow | | newRow |
|
|
|
|
newRow := OrderedCollection new.
|
2024-02-04 23:54:11 +00:00
|
|
|
self columnKeys do: [:key | newRow add: (rawRow at: key) ].
|
|
|
|
newRow
|
2024-02-04 23:15:29 +00:00
|
|
|
].
|