Method
dispose
(self, collection: ColumnCollection[_COLKEY, _COL_co])
Source from the content-addressed store, hash-verified
| 1484 | return self.column._expanded_proxy_set |
| 1485 | |
| 1486 | def dispose(self, collection: ColumnCollection[_COLKEY, _COL_co]) -> None: |
| 1487 | pi = collection._proxy_index |
| 1488 | if not pi: |
| 1489 | return |
| 1490 | for col in self.column._expanded_proxy_set: |
| 1491 | colset = pi.get(col, None) |
| 1492 | if colset: |
| 1493 | colset.discard(self) |
| 1494 | if colset is not None and not colset: |
| 1495 | del pi[col] |
| 1496 | |
| 1497 | def embedded( |
| 1498 | self, |
Tested by
no test coverage detected