Lazily decode and iterate elements in this document.
(self)
| 144 | return self.__raw |
| 145 | |
| 146 | def items(self) -> ItemsView[str, Any]: |
| 147 | """Lazily decode and iterate elements in this document.""" |
| 148 | return self.__inflated.items() |
| 149 | |
| 150 | @property |
| 151 | def __inflated(self) -> Mapping[str, Any]: |
no outgoing calls