Produce a bitwise NOT operation, typically via the ``~`` operator. .. versionadded:: 2.0.2 .. seealso:: :ref:`operators_bitwise`
(self)
| 1000 | return self.operate(bitwise_and_op, other) |
| 1001 | |
| 1002 | def bitwise_not(self) -> ColumnOperators: |
| 1003 | """Produce a bitwise NOT operation, typically via the ``~`` |
| 1004 | operator. |
| 1005 | |
| 1006 | .. versionadded:: 2.0.2 |
| 1007 | |
| 1008 | .. seealso:: |
| 1009 | |
| 1010 | :ref:`operators_bitwise` |
| 1011 | |
| 1012 | """ |
| 1013 | |
| 1014 | return self.operate(bitwise_not_op) |
| 1015 | |
| 1016 | def bitwise_lshift(self, other: Any) -> ColumnOperators: |
| 1017 | """Produce a bitwise LSHIFT operation, typically via the ``<<`` |