MCPcopy Create free account
hub / github.com/It4innovations/hyperqueue / p_u64

Function p_u64

crates/hyperqueue/src/common/parser.rs:238–242  ·  view source on GitHub ↗

Parse 8 byte integer

(input: &str)

Source from the content-addressed store, hash-verified

236
237/// Parse 8 byte integer
238pub fn p_u64(input: &str) -> NomResult<'_, u64> {
239 map_res(p_integer_string, |number| number.parse())
240 .context(CONTEXT_INTEGER)
241 .parse(input)
242}
243
244#[cfg(test)]
245mod tests {

Callers

nothing calls this directly

Calls 1

parseMethod · 0.80

Tested by

no test coverage detected