Open DaniPopes opened 10 months ago
Uint::<_, _>::from_str("") always parses successfully as 0.
Uint::<_, _>::from_str("")
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?
from_base_be
BaseConverError::NoDigits
Uint::<_, _>::from_str("")
always parses successfully as 0.