(self, col: ColumnClause[Any])
| 2566 | |
| 2567 | class ColumnSet(util.OrderedSet["ColumnClause[Any]"]): |
| 2568 | def contains_column(self, col: ColumnClause[Any]) -> bool: |
| 2569 | return col in self |
| 2570 | |
| 2571 | def extend(self, cols: Iterable[Any]) -> None: |
| 2572 | for col in cols: |
no outgoing calls