MCPcopy Create free account
hub / github.com/FastLED/FastLED / regex_string_literal

Function regex_string_literal

ci/lint_cpp_rs/src/lib.rs:1892–1895  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1890}
1891
1892fn regex_string_literal() -> &'static Regex {
1893 static VALUE: OnceLock<Regex> = OnceLock::new();
1894 VALUE.get_or_init(|| Regex::new(r#""(?:[^"\\]|\\.)*"|'(?:[^'\\]|\\.)*'"#).unwrap())
1895}
1896
1897fn regex_new_alloc() -> &'static Regex {
1898 static VALUE: OnceLock<Regex> = OnceLock::new();

Callers 1

check_file_contentMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected