u64_step

Function u64_step 

Source
pub const fn u64_step(radix: u32) -> usize
Available on crate features parse-floats or parse-integers or write-floats or write-integers only.
Expand description

Calculate the number of digits that can be processed without overflowing a u64. Helper function since this is used for 128-bit division.

This is an alias for min_step with bits == 64 and is_signed == false.