5 releases

Uses old Rust 2015

0.1.4 Mar 2, 2018
0.1.3 Mar 2, 2018
0.1.2 Oct 23, 2017
0.1.1 Oct 23, 2017
0.1.0 May 3, 2016

#1901 in Rust patterns

Download history 990/week @ 2024-09-06 897/week @ 2024-09-13 1063/week @ 2024-09-20 844/week @ 2024-09-27 754/week @ 2024-10-04 1105/week @ 2024-10-11 984/week @ 2024-10-18 1114/week @ 2024-10-25 1240/week @ 2024-11-01 784/week @ 2024-11-08 987/week @ 2024-11-15 1390/week @ 2024-11-22 1611/week @ 2024-11-29 1811/week @ 2024-12-06 1936/week @ 2024-12-13 1419/week @ 2024-12-20

7,126 downloads per month
Used in 51 crates (18 directly)

MIT license

5KB
63 lines

hex-slice

Build Status

Renders a slice of integers (or anything else that supports the LowerHex or UpperHex traits) as hex. For example, this:

extern crate hex_slice;
use hex_slice::AsHex;

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

Displays: [0 1 2 3] on standard output (available with cargo run --example trivial).


lib.rs:

The purpose of this crate is to extend the UpperHex and LowerHex traits to slices, as well as the integers it is currently implemented for.

Examples

extern crate hex_slice;
use hex_slice::AsHex;

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

No runtime deps