MCPcopy Create free account
hub / github.com/davidblewett/rure-python / parser_octal

Function parser_octal

regex/regex-syntax/src/ast/parse.rs:2315–2318  ·  view source on GitHub ↗
(pattern: &str)

Source from the content-addressed store, hash-verified

2313 }
2314
2315 fn parser_octal(pattern: &str) -> ParserI<Parser> {
2316 let parser = ParserBuilder::new().octal(true).build();
2317 ParserI::new(parser, pattern)
2318 }
2319
2320 fn parser_nest_limit(pattern: &str, nest_limit: u32) -> ParserI<Parser> {
2321 let p = ParserBuilder::new().nest_limit(nest_limit).build();

Callers

nothing calls this directly

Calls 2

buildMethod · 0.45
octalMethod · 0.45

Tested by

no test coverage detected