(self, data: Union[Self, Dict[str, Any]])
| 642 | return self._store.to_namedtuple() |
| 643 | |
| 644 | def update(self, data: Union[Self, Dict[str, Any]]) -> Self: |
| 645 | for key, value in data.items(): |
| 646 | self[key] = value |
| 647 | return self |
| 648 | |
| 649 | def __cat_dim__(self, key: str, value: Any, *args, **kwargs) -> Any: |
| 650 | if is_sparse(value) and ('adj' in key or 'edge_index' in key): |