Returns an empty set of capture locations that can be reused in multiple calls to `captures_read` or `captures_read_at`.
(&self)
| 730 | /// Returns an empty set of capture locations that can be reused in |
| 731 | /// multiple calls to `captures_read` or `captures_read_at`. |
| 732 | pub fn capture_locations(&self) -> CaptureLocations { |
| 733 | CaptureLocations(self.0.searcher_str().locations()) |
| 734 | } |
| 735 | |
| 736 | /// An alias for `capture_locations` to preserve backward compatibility. |
| 737 | /// |
no test coverage detected