(self)
| 1187 | |
| 1188 | def tree_flatten_with_keys(self): |
| 1189 | raise NotImplementedError |
| 1190 | |
| 1191 | def tree_flatten(self): |
| 1192 | # Convert dict_values and_keys to lists to avoid holding reference to the VDict. |
| 1193 | return (list(self.values()), list(self.keys())) |
| 1194 |
no test coverage detected