(&self, options: anystr::SplitLinesArgs, into_wrapper: FW)
| 741 | } |
| 742 | |
| 743 | pub fn splitlines<FW, W>(&self, options: anystr::SplitLinesArgs, into_wrapper: FW) -> Vec<W> |
| 744 | where |
| 745 | FW: Fn(&[u8]) -> W, |
| 746 | { |
| 747 | self.elements.py_bytes_splitlines(options, into_wrapper) |
| 748 | } |
| 749 | |
| 750 | pub fn zfill(&self, width: isize) -> Vec<u8> { |
| 751 | self.elements.py_zfill(width) |
no test coverage detected