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

Function arrow_tail

codegraph-kernel/src/cfnptr.rs:913–916  ·  view source on GitHub ↗
(s: &[u8], i: usize)

Source from the content-addressed store, hash-verified

911
912/// `\s*(?:->|\.)\s*` at `i` → position after.
913#[inline]
914fn arrow_tail(s: &[u8], i: usize) -> Option<usize> {
915 let a = arrow_at(s, skip_jsws(s, i))?;
916 Some(skip_jsws(s, a))
917}
918
919/// ARRAY_DISPATCH_RE: /(?:\(\s*\*\s*)?\b(\w+)\s*\[[^\][]*\]\s*\)?\s*\(/g

Callers 1

scan_dispatchFunction · 0.85

Calls 2

arrow_atFunction · 0.85
skip_jswsFunction · 0.85

Tested by

no test coverage detected