| Crates.io | num-digitize |
| lib.rs | num-digitize |
| version | 0.4.2 |
| created_at | 2016-05-24 16:23:36.512444+00 |
| updated_at | 2017-06-02 07:16:23.158872+00 |
| description | Converts integer of type N into Vec |
| homepage | https://github.com/lunemec/rust-num-digitize |
| repository | https://github.com/lunemec/rust-num-digitize |
| max_upload_size | |
| id | 5175 |
| size | 11,512 |
Converts integer of type N (all standard types are supported)
and returns a Vec<i8> of its digits (base 10).
Add this to your Cargo.toml:
[dependencies]
num-digitize = "0.4"
and this to your crate root:
extern crate num_digitize;