(
cls, other: Optional[ColumnElement[Any]]
)
| 2896 | |
| 2897 | @classmethod |
| 2898 | def _ifnone( |
| 2899 | cls, other: Optional[ColumnElement[Any]] |
| 2900 | ) -> ColumnElement[Any]: |
| 2901 | if other is None: |
| 2902 | return cls._instance() |
| 2903 | else: |
| 2904 | return other |
| 2905 | |
| 2906 | @classmethod |
| 2907 | def _instance(cls) -> True_: |