(
&self,
options: ByteInnerPaddingOptions,
vm: &VirtualMachine,
)
| 531 | } |
| 532 | |
| 533 | pub fn rjust( |
| 534 | &self, |
| 535 | options: ByteInnerPaddingOptions, |
| 536 | vm: &VirtualMachine, |
| 537 | ) -> PyResult<Vec<u8>> { |
| 538 | self._pad(options, AnyStr::py_rjust, vm) |
| 539 | } |
| 540 | |
| 541 | pub fn count(&self, options: ByteInnerFindOptions, vm: &VirtualMachine) -> PyResult<usize> { |
| 542 | let (needle, range) = options.get_value(self.elements.len(), vm)?; |
no test coverage detected