def __getitem__(self, index: Any) -> ColumnElement[Any]:
...
+ def __lshift__(self, other: Any) -> ColumnElement[Any]:
+ ...
+
+ def __rshift__(self, other: Any) -> ColumnElement[Any]:
+ ...
+
@overload
def concat(self: _SQO[str], other: Any) -> ColumnElement[str]:
...
) -> BinaryExpression[bool]:
...
+ def bitwise_xor(self, other: Any) -> BinaryExpression[Any]:
+ ...
+
+ def bitwise_or(self, other: Any) -> BinaryExpression[Any]:
+ ...
+
+ def bitwise_and(self, other: Any) -> BinaryExpression[Any]:
+ ...
+
+ def bitwise_not(self) -> UnaryExpression[_T]:
+ ...
+
+ def bitwise_lshift(self, other: Any) -> BinaryExpression[Any]:
+ ...
+
+ def bitwise_rshift(self, other: Any) -> BinaryExpression[Any]:
+ ...
+
def in_(
self,
other: Union[
) -> ColumnElement[bool]:
...
+ def istartswith(
+ self,
+ other: Any,
+ escape: Optional[str] = None,
+ autoescape: bool = False,
+ ) -> ColumnElement[bool]:
+ ...
+
def endswith(
self,
other: Any,
) -> ColumnElement[bool]:
...
+ def iendswith(
+ self,
+ other: Any,
+ escape: Optional[str] = None,
+ autoescape: bool = False,
+ ) -> ColumnElement[bool]:
+ ...
+
def contains(self, other: Any, **kw: Any) -> ColumnElement[bool]:
...
+ def icontains(self, other: Any, **kw: Any) -> ColumnElement[bool]:
+ ...
+
def match(self, other: Any, **kwargs: Any) -> ColumnElement[bool]:
...