hyperloglog 0.0.6

Hyperloglog implementation in Rust
docs.rs failed to build hyperloglog-0.0.6
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: hyperloglog-1.0.2

hyperloglog

A HyperLogLog implementation in Rust, with bias correction.

Installation: use Cargo.

Usage:

let mut hll = HyperLogLog::new(error_rate);
hll.insert(~"test1");
hll.insert(~"test2");
let card_estimation = hll.len();

let mut hll2 = HyperLogLog::new_from_template(&hll);
hll2.insert(~"test3");

hll.merge(&hll2);