Return an immutable proxy for this :class:`.Properties`.
(self)
| 202 | return key in self._data |
| 203 | |
| 204 | def as_readonly(self) -> ReadOnlyProperties[_T]: |
| 205 | """Return an immutable proxy for this :class:`.Properties`.""" |
| 206 | |
| 207 | return ReadOnlyProperties(self._data) |
| 208 | |
| 209 | def update(self, value: Dict[str, _T]) -> None: |
| 210 | self._data.update(value) |