5 releases
Uses old Rust 2015
0.1.4 | Feb 18, 2016 |
---|---|
0.1.3 | Jan 29, 2016 |
0.1.2 | Jan 26, 2016 |
0.1.1 | Jan 25, 2016 |
0.1.0 | Jan 22, 2016 |
#4 in #hdr-histogram
40KB
897 lines
rustogram
A Rust port of HdrHistogram.
usage
extern crate rustogram;
#[test]
fn it_works() {
let mut h = rustogram::histogram::new_histogram(10000, 3);
h.record_value(42);
println!("Total recorded samples: {}", h.get_total_count());
}
Dependencies
~225KB