Return true if and only if the empty string is part of the language matched by this regular expression. This includes `a*`, `a?b*`, `a{0}`, `()`, `()+`, `^$`, `a|b?`, `\B`, but not `a`, `a+` or `\b`.
(&self)
| 684 | /// This includes `a*`, `a?b*`, `a{0}`, `()`, `()+`, `^$`, `a|b?`, `\B`, |
| 685 | /// but not `a`, `a+` or `\b`. |
| 686 | pub fn is_match_empty(&self) -> bool { |
| 687 | self.info.is_match_empty() |
| 688 | } |
| 689 | |
| 690 | /// Return true if and only if this HIR is a simple literal. This is only |
| 691 | /// true when this HIR expression is either itself a `Literal` or a |
no outgoing calls
no test coverage detected