Returns an empty set of capture locations that can be reused in multiple calls to `captures_read` or `captures_read_at`.
(&self)
| 673 | /// Returns an empty set of capture locations that can be reused in |
| 674 | /// multiple calls to `captures_read` or `captures_read_at`. |
| 675 | pub fn capture_locations(&self) -> CaptureLocations { |
| 676 | CaptureLocations(self.0.searcher().locations()) |
| 677 | } |
| 678 | |
| 679 | /// An alias for `capture_locations` to preserve backward compatibility. |
| 680 | /// |
no test coverage detected