Allocates fresh space for all capturing groups in this regex.
(&self)
| 106 | |
| 107 | /// Allocates fresh space for all capturing groups in this regex. |
| 108 | fn locations(&self) -> Locations { |
| 109 | Locations(vec![None; self.slots_len()]) |
| 110 | } |
| 111 | |
| 112 | /// Returns the position of the next character after `i`. |
| 113 | /// |