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

Function skip_sp_tab

codegraph-kernel/src/cfnptr.rs:705–710  ·  view source on GitHub ↗
(line: &[u8], mut i: usize)

Source from the content-addressed store, hash-verified

703}
704
705#[inline]
706fn skip_sp_tab(line: &[u8], mut i: usize) -> usize {
707 while i < line.len() && (line[i] == b' ' || line[i] == b'\t') {
708 i += 1;
709 }
710 i
711}
712
713fn alias_line(line: &[u8]) -> Option<&[u8]> {

Callers 2

alias_lineFunction · 0.85
scan_includesFunction · 0.85

Calls 1

lenMethod · 0.80

Tested by

no test coverage detected