uint
uint copied to clipboard
Empty string gets parsed as 0
Uint::<_, _>::from_str("")
always parses successfully as 0.
this appears to be @recmo 's intended behavior, as there is the parser uses from_base_be
and there is no BaseConverError::NoDigits
. We could add one in 2.0.0 if we feel there's a compelling reason?