| Crates.io | rustogram |
| lib.rs | rustogram |
| version | 0.1.4 |
| created_at | 2016-01-22 15:44:13.603007+00 |
| updated_at | 2016-02-18 08:31:14.010232+00 |
| description | A rust port of HdrHistogram |
| homepage | https://github.com/epickrram/rustogram |
| repository | https://github.com/epickrram/rustogram |
| max_upload_size | |
| id | 3958 |
| size | 68,978 |
A Rust port of HdrHistogram.
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());
}