22c50901ff
`str::from_utf8` changed its return type to `Result`, but `num::FromStrRadix::from_str_radix` still returns an `Option`. In this case discarding the `Err` variant with `ok()` seems fine to me. |
||
---|---|---|
benches | ||
src | ||
.gitignore | ||
.travis.yml | ||
Cargo.toml | ||
LICENSE-APACHE | ||
LICENSE-MIT | ||
README.md |
README.md
num
Arbitrary sized numeric types for Rust.
Usage
Add this to your Cargo.toml
:
[dependencies]
num = "*"
and this to your crate root:
extern crate num;