Return a sequence of string key names for all columns in this collection.
(self)
| 1898 | return [col for (_, col, _) in self._collection] |
| 1899 | |
| 1900 | def keys(self) -> List[_COLKEY]: |
| 1901 | """Return a sequence of string key names for all columns in this |
| 1902 | collection.""" |
| 1903 | return [k for (k, _, _) in self._collection] |
| 1904 | |
| 1905 | def values(self) -> List[_COL_co]: |
| 1906 | """Return a sequence of :class:`_sql.ColumnClause` or |
no outgoing calls
no test coverage detected