I don't see a reason why `+` should only be allowed on signed integers. Currently this fails: ```rs assert_eq!( std::u64::MAX, from_str("+19").unwrap() ); ```
I don't see a reason why
+should only be allowed on signed integers.Currently this fails: