Socialmetrica/Socialmetrica.package/Nitter.class/class/instanceRows.st

7 lines
195 B
Smalltalk

accessing
instanceRows
^ (self instances at: 'hosts') collect: [:rawRow | | newRow |
newRow := OrderedCollection new.
self columnKeys do: [:key | newRow add: (rawRow at: key) ].
newRow
].