(self, to_strip=None)
| 495 | return self._str_map(lambda x: x.lstrip(to_strip)) |
| 496 | |
| 497 | def _str_rstrip(self, to_strip=None): |
| 498 | return self._str_map(lambda x: x.rstrip(to_strip)) |
| 499 | |
| 500 | def _str_removeprefix(self, prefix: str): |
| 501 | return self._str_map(lambda x: x.removeprefix(prefix)) |