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

8 lines
247 B
Smalltalk

accessing
instanceRows
^ (self instances at: 'hosts') collect: [:rawRow | | newRow |
newRow := NitterInstance new.
self columnsDictionary keysAndValuesDo: [:key :value |
newRow writeSlotNamed: value value: (rawRow at: key) ].
newRow
].