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

Function arrow_tail

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

Source from the content-addressed store, hash-verified

893
894/// `\s*(?:->|\.)\s*` at `i` → position after.
895#[inline]
896fn arrow_tail(s: &[u8], i: usize) -> Option<usize> {
897 let a = arrow_at(s, skip_jsws(s, i))?;
898 Some(skip_jsws(s, a))
899}
900
901/// 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