hex-slice 0.1.4

Extends the std::fmt::*Hex traits to slices
Documentation
1
2
3
4
5
6
7
8
extern crate hex_slice;
use hex_slice::AsHex;

fn main() {
    let foo = vec![0u32, 1 ,2 ,3];
    println!("{:x}", foo.as_hex());
}