MCPcopy Create free account
hub / github.com/ScriptedAlchemy/tracedecay / parse_fixed_i32

Function parse_fixed_i32

src/timeutil.rs:279–281  ·  view source on GitHub ↗
(value: &str, start: usize, end: usize)

Source from the content-addressed store, hash-verified

277}
278
279fn parse_fixed_i32(value: &str, start: usize, end: usize) -> Option<i32> {
280 value.get(start..end)?.parse().ok()
281}
282
283fn parse_fixed_u32(value: &str, start: usize, end: usize) -> Option<u32> {
284 value.get(start..end)?.parse().ok()

Callers 2

parse_rfc3339_timestampFunction · 0.85

Calls 1

parseMethod · 0.45

Tested by

no test coverage detected