(self, sep: str, expand: bool)
| 2775 | return self._from_pyarrow_array(pc.binary_join(result, sep)) |
| 2776 | |
| 2777 | def _str_partition(self, sep: str, expand: bool) -> Self: |
| 2778 | predicate = lambda val: val.partition(sep) |
| 2779 | result = self._apply_elementwise(predicate) |
| 2780 | return self._from_pyarrow_array(pa.chunked_array(result)) |
| 2781 | |
| 2782 | def _str_rpartition(self, sep: str, expand: bool) -> Self: |
| 2783 | predicate = lambda val: val.rpartition(sep) |
nothing calls this directly
no test coverage detected