Return a view of key/value tuples for the elements in the underlying :class:`.Row`.
(self)
| 376 | return repr(dict(self)) |
| 377 | |
| 378 | def items(self) -> ROMappingItemsView: |
| 379 | """Return a view of key/value tuples for the elements in the |
| 380 | underlying :class:`.Row`. |
| 381 | |
| 382 | """ |
| 383 | return ROMappingItemsView( |
| 384 | self, [(key, self[key]) for key in self.keys()] |
| 385 | ) |
| 386 | |
| 387 | def keys(self) -> RMKeyView: |
| 388 | """Return a view of 'keys' for string column names represented |