Return a dynamic view of the dict's values.
(self)
| 732 | return KeysView(self, _ffi_api.DictForwardIterFunctor) |
| 733 | |
| 734 | def values(self) -> ValuesView[V]: |
| 735 | """Return a dynamic view of the dict's values.""" |
| 736 | return ValuesView(self, _ffi_api.DictForwardIterFunctor) |
| 737 | |
| 738 | def items(self) -> ItemsView[K, V]: |
| 739 | """Get the items from the dict.""" |