Lines Matching full:octal
15 pub octal: bool, field
31 octal: false, in default()
147 /// Whether to support octal syntax or not.
149 /// Octal syntax is a little-known way of uttering Unicode codepoints in
152 /// shows octal syntax.
154 /// While supporting octal syntax isn't in and of itself a problem, it does
158 /// be supported. Therefore, when octal support is disabled, the error
161 /// Octal syntax is disabled by default.
162 pub fn octal(&mut self, yes: bool) -> &mut RegexBuilder {
163 self.0.octal = yes;
333 /// Whether to support octal syntax or not.
335 /// Octal syntax is a little-known way of uttering Unicode codepoints in
338 /// shows octal syntax.
340 /// While supporting octal syntax isn't in and of itself a problem, it does
344 /// be supported. Therefore, when octal support is disabled, the error
347 /// Octal syntax is disabled by default.
348 pub fn octal(&mut self, yes: bool) -> &mut RegexSetBuilder {
349 self.0.octal = yes;