[][src]Function lexical_core::atou64_range

#[no_mangle]
pub unsafe extern "C" fn atou64_range(first: *const u8, last: *const u8) -> u64

Unchecked parser for a string-to-number conversion using pointer ranges.

Returns the parsed value, ignoring any trailing invalid digits, and explicitly wrapping on arithmetic overflow.

This parser is FFI-compatible, and therefore may be called externally from C code.

Panics

Panics if either pointer is null.