(
self,
target_set: Union[
Set[ColumnElement[Any]], FrozenSet[ColumnElement[Any]]
],
)
| 1495 | del pi[col] |
| 1496 | |
| 1497 | def embedded( |
| 1498 | self, |
| 1499 | target_set: Union[ |
| 1500 | Set[ColumnElement[Any]], FrozenSet[ColumnElement[Any]] |
| 1501 | ], |
| 1502 | ) -> bool: |
| 1503 | expanded_proxy_set = self.column._expanded_proxy_set |
| 1504 | for t in target_set.difference(expanded_proxy_set): |
| 1505 | if not expanded_proxy_set.intersection(_expand_cloned([t])): |
| 1506 | return False |
| 1507 | return True |
| 1508 | |
| 1509 | |
| 1510 | class ColumnCollection(Generic[_COLKEY, _COL_co]): |
no test coverage detected