MCPcopy Create free account
hub / github.com/colbymchenry/codegraph / has_lower_re

Function has_lower_re

codegraph-kernel/src/ccpp/mod.rs:88–91  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

86 RE.get_or_init(|| Regex::new(r"^[A-Z][A-Z0-9]*(?:_[A-Z0-9]+)+$").unwrap())
87}
88fn has_lower_re() -> &'static Regex {
89 static RE: OnceLock<Regex> = OnceLock::new();
90 RE.get_or_init(|| Regex::new(r"[a-z]").unwrap())
91}
92/// normalizeCppReturnType: smart-pointer/optional unwrap.
93fn ret_wrapper_re() -> &'static Regex {
94 static RE: OnceLock<Regex> = OnceLock::new();

Callers 1

Calls 1

unwrapMethod · 0.60

Tested by

no test coverage detected