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

Function starts_upper_re

codegraph-kernel/src/scala.rs:111–114  ·  view source on GitHub ↗

The #750 re-encode gate (`/^[A-Z]/`).

()

Source from the content-addressed store, hash-verified

109}
110/// The #750 re-encode gate (`/^[A-Z]/`).
111fn starts_upper_re() -> &'static Regex {
112 static RE: OnceLock<Regex> = OnceLock::new();
113 RE.get_or_init(|| Regex::new(r"^[A-Z]").unwrap())
114}
115/// JS `\s+` for the re-encode/return-type strips (Unicode whitespace).
116fn ws_re() -> &'static Regex {
117 static RE: OnceLock<Regex> = OnceLock::new();

Callers 1

extract_callMethod · 0.70

Calls 1

unwrapMethod · 0.60

Tested by

no test coverage detected