Enable verbose mode in the regular expression. When enabled, verbose mode permits insigificant whitespace in many places in the regular expression, as well as comments. Comments are started using `#` and continue until the end of the line. By default, this is disabled. It may be selectively enabled in the regular expression by using the `x` flag regardless of this setting.
(&mut self, yes: bool)
| 216 | /// By default, this is disabled. It may be selectively enabled in the |
| 217 | /// regular expression by using the `x` flag regardless of this setting. |
| 218 | pub fn ignore_whitespace(&mut self, yes: bool) -> &mut ParserBuilder { |
| 219 | self.ignore_whitespace = yes; |
| 220 | self |
| 221 | } |
| 222 | } |
| 223 | |
| 224 | /// A regular expression parser. |
no test coverage detected