pub fn cannot_overflow<T: Integer>(length: usize, radix: u32) -> boolExpand description
Check to see if parsing the float cannot possible overflow.
This allows major optimizations for those types, since we can skip checked arithmetic. Adapted from the rust corelib.