num-digitize 0.4.2

Converts integer of type N into Vec<i8> containing its digits.
Documentation

rust-num-digitize

Image of Travis CI build status Crates.io

Converts integer of type N (all standard types are supported) and returns a Vec<i8> of its digits (base 10).

Documentation

Usage

Add this to your Cargo.toml:

[dependencies]
num-digitize = "0.4"

and this to your crate root:

extern crate num_digitize;