Return a sequence of (key, column) tuples for all columns in this collection each consisting of a string key name and a :class:`_sql.ColumnClause` or :class:`_schema.Column` object.
(self)
| 1666 | return [col for (_, col, _) in self._collection] |
| 1667 | |
| 1668 | def items(self) -> List[Tuple[_COLKEY, _COL_co]]: |
| 1669 | """Return a sequence of (key, column) tuples for all columns in this |
| 1670 | collection each consisting of a string key name and a |
| 1671 | :class:`_sql.ColumnClause` or |
| 1672 | :class:`_schema.Column` object. |
| 1673 | """ |
| 1674 | |
| 1675 | return [(k, col) for (k, col, _) in self._collection] |
| 1676 | |
| 1677 | def __bool__(self) -> bool: |
| 1678 | return bool(self._collection) |
no outgoing calls
no test coverage detected