(self, tbl: CT_Table, parent: Table)
| 452 | """Sequence of table columns.""" |
| 453 | |
| 454 | def __init__(self, tbl: CT_Table, parent: Table): |
| 455 | super(_ColumnCollection, self).__init__(parent) |
| 456 | self._parent = parent |
| 457 | self._tbl = tbl |
| 458 | |
| 459 | def __getitem__(self, idx: int): |
| 460 | """Provides indexed access, (e.g. 'columns[0]').""" |