Returns true if and only if this entire HIR expression is made up of zero-width assertions. This includes expressions like `^$\b\A\z` and even `((\b)+())*^`, but not `^a`.
(&self)
| 619 | /// This includes expressions like `^$\b\A\z` and even `((\b)+())*^`, but |
| 620 | /// not `^a`. |
| 621 | pub fn is_all_assertions(&self) -> bool { |
| 622 | self.info.is_all_assertions() |
| 623 | } |
| 624 | |
| 625 | /// Return true if and only if this HIR is required to match from the |
| 626 | /// beginning of text. This includes expressions like `^foo`, `^(foo|bar)`, |
no outgoing calls
no test coverage detected