pub const ROOT_CAPTURE: &str = "__match";
The capture name bound to the whole matched pattern, used for range extraction. Chosen to not collide with a user metavar (which are uppercase by convention and never start with __).
__