Method
dispose
(self, collection: ColumnCollection[_COLKEY, _COL_co])
Source from the content-addressed store, hash-verified
| 1751 | return self.column._expanded_proxy_set |
| 1752 | |
| 1753 | def dispose(self, collection: ColumnCollection[_COLKEY, _COL_co]) -> None: |
| 1754 | pi = collection._proxy_index |
| 1755 | if not pi: |
| 1756 | return |
| 1757 | for col in self.column._expanded_proxy_set: |
| 1758 | colset = pi.get(col, None) |
| 1759 | if colset: |
| 1760 | colset.discard(self) |
| 1761 | if colset is not None and not colset: |
| 1762 | del pi[col] |
| 1763 | |
| 1764 | def embedded( |
| 1765 | self, |
Tested by
no test coverage detected