|_ColumnCollection| instance for this table. Provides access to |_Column| objects representing the table's columns. |_Column| objects are accessed using list notation, e.g. `col = tbl.columns[0]`.
(self)
| 41 | |
| 42 | @lazyproperty |
| 43 | def columns(self) -> _ColumnCollection: |
| 44 | """|_ColumnCollection| instance for this table. |
| 45 | |
| 46 | Provides access to |_Column| objects representing the table's columns. |_Column| objects |
| 47 | are accessed using list notation, e.g. `col = tbl.columns[0]`. |
| 48 | """ |
| 49 | return _ColumnCollection(self._tbl, self) |
| 50 | |
| 51 | @property |
| 52 | def first_col(self) -> bool: |
nothing calls this directly
no test coverage detected