Return a view of key/value tuples for the elements in the underlying :class:`.Row`.
(self)
| 373 | return repr(dict(self)) |
| 374 | |
| 375 | def items(self) -> ROMappingItemsView: |
| 376 | class="st">"""Return a view of key/value tuples for the elements in the |
| 377 | underlying :class:`.Row`. |
| 378 | |
| 379 | class="st">""" |
| 380 | return ROMappingItemsView( |
| 381 | self, [(key, self[key]) for key in self.keys()] |
| 382 | ) |
| 383 | |
| 384 | def keys(self) -> RMKeyView: |
| 385 | class="st">"""Return a view of &class="cm">#x27;keys' for string column names represented |