(&self, sub: &Self, vm: &VirtualMachine)
| 689 | } |
| 690 | |
| 691 | pub fn partition(&self, sub: &Self, vm: &VirtualMachine) -> PyResult<(Vec<u8>, bool, Vec<u8>)> { |
| 692 | self.elements.py_partition( |
| 693 | &sub.elements, |
| 694 | || self.elements.splitn_str(2, &sub.elements), |
| 695 | vm, |
| 696 | ) |
| 697 | } |
| 698 | |
| 699 | pub fn rpartition( |
| 700 | &self, |
no test coverage detected