(&self, args: FindArgs)
| 1279 | |
| 1280 | #[pymethod] |
| 1281 | fn count(&self, args: FindArgs) -> usize { |
| 1282 | let (needle, range) = args.get_value(self.len()); |
| 1283 | self.as_wtf8() |
| 1284 | .py_count(needle.as_wtf8(), range, |h, n| h.find_iter(n).count()) |
| 1285 | } |
| 1286 | |
| 1287 | #[pymethod] |
| 1288 | fn zfill(&self, width: isize) -> Wtf8Buf { |
no test coverage detected