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:

toml [dependencies] num-digitize = "0.4"

and this to your crate root:

rust extern crate num_digitize;