![Image of Travis CI build status] (https://travis-ci.org/lunemec/rust-num-digitize.svg?branch=master) ![Crates.io] (https://img.shields.io/crates/v/num-digitize.svg)
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;