const MAX_CHUNK_DIGITS: usize = 18;Expand description
The maximum number of decimal digits accumulated in a u64 before the
chunk is folded into the native value: every 18-digit number fits in a
u64, and splits into two halves that each fit in a u32 (see
decimal_chunk_to_native).