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

8 lines
247 B
Smalltalk
Raw Permalink Normal View History

2024-02-04 23:15:29 +00:00
accessing
instanceRows
^ (self instances at: 'hosts') collect: [:rawRow | | newRow |
2024-02-10 17:34:50 +00:00
newRow := NitterInstance new.
self columnsDictionary keysAndValuesDo: [:key :value |
newRow writeSlotNamed: value value: (rawRow at: key) ].
newRow
2024-02-04 23:15:29 +00:00
].