jhpratt / deranged

Proof of concept ranged integers in Rust.
Apache License 2.0
38 stars 5 forks source link

Implement `from_str_radix` #8

Closed TonalidadeHidrica closed 1 year ago

TonalidadeHidrica commented 1 year ago

It may be nice idea to implement from_str_radix (and possibly some other missing functions).

jhpratt commented 1 year ago

I can definitely do this. It should be simple to implement, as it can be delegated to std, with the range validation and error handling easily handled.

jhpratt commented 1 year ago

Implemented and released.