(self)
| 106 | self._set_attrs(parent, parent._key_to_index, state["_data"]) |
| 107 | |
| 108 | def _values_impl(self) -> List[Any]: |
| 109 | return list(self._data) |
| 110 | |
| 111 | def __iter__(self) -> Iterator[Any]: |
| 112 | return iter(self._data) |
no outgoing calls
no test coverage detected