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

Function skip_sp_tab

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

Source from the content-addressed store, hash-verified

714}
715
716#[inline]
717fn skip_sp_tab(line: &[u8], mut i: usize) -> usize {
718 while i < line.len() && (line[i] == b' ' || line[i] == b'\t') {
719 i += 1;
720 }
721 i
722}
723
724fn 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