5 个版本

使用旧的 Rust 2015

0.1.4 2016年2月18日
0.1.3 2016年1月29日
0.1.2 2016年1月26日
0.1.1 2016年1月25日
0.1.0 2016年1月22日

#9 in #percentile

Apache-2.0

40KB
897

rustogram

Build status

HdrHistogram 的 Rust 版本。

用法

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());
}

依赖项

~225KB