(self, col: ColumnClause[Any])
| 2230 | |
| 2231 | class ColumnSet(util.OrderedSet["ColumnClause[Any]"]): |
| 2232 | def contains_column(self, col: ColumnClause[Any]) -> bool: |
| 2233 | return col in self |
| 2234 | |
| 2235 | def extend(self, cols: Iterable[Any]) -> None: |
| 2236 | for col in cols: |
no outgoing calls