Return a view of values for the values represented in the underlying :class:`.Row`.
(self)
| 390 | return self._parent.keys |
| 391 | |
| 392 | def values(self) -> ROMappingKeysValuesView: |
| 393 | """Return a view of values for the values represented in the |
| 394 | underlying :class:`.Row`. |
| 395 | |
| 396 | """ |
| 397 | return ROMappingKeysValuesView(self, self._values_impl()) |
no test coverage detected