synonym for :attr:`.FunctionElement.columns`.
(self)
| 412 | |
| 413 | @util.ro_memoized_property |
| 414 | def c(self) -> ColumnCollection[str, KeyedColumnElement[Any]]: # type: ignore[override] # noqa: E501 |
| 415 | """synonym for :attr:`.FunctionElement.columns`.""" |
| 416 | |
| 417 | return ColumnCollection( |
| 418 | columns=[(col.key, col) for col in self._all_selected_columns] |
| 419 | ) |
| 420 | |
| 421 | @property |
| 422 | def _all_selected_columns(self) -> Sequence[KeyedColumnElement[Any]]: |
nothing calls this directly
no test coverage detected