Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/dylan-sutton-chavez/edge-python
/ scan_hex_digits
Method
scan_hex_digits
compiler/src/modules/lexer/scan.rs:83–85 ·
view source on GitHub ↗
(&mut self)
Source
from the content-addressed store, hash-verified
81
}
82
}
83
fn scan_hex_digits(&mut self) {
84
self.scan_while(|b| b.is_ascii_hexdigit() || b == b
'_'
);
85
}
86
fn scan_oct_digits(&mut self) {
87
self.scan_while(|b| matches!(b, b
'0'
..=b
'7'
| b
'_'
));
88
}
Callers
1
scan_number
Method · 0.80
Calls
1
scan_while
Method · 0.80
Tested by
no test coverage detected