(&self, width: isize)
| 748 | } |
| 749 | |
| 750 | pub fn zfill(&self, width: isize) -> Vec<u8> { |
| 751 | self.elements.py_zfill(width) |
| 752 | } |
| 753 | |
| 754 | // len(self)>=1, from="", len(to)>=1, max_count>=1 |
| 755 | fn replace_interleave(&self, to: Self, max_count: Option<usize>) -> Vec<u8> { |
no test coverage detected