Further Adventures in Rust - LogLog-Beta

In my latest attempt to get to grips with Rust, I’ve recently put together a simple implementation of the LogLog-Beta algorithm. LogLog-Beta is a fancy new algorithm (published in December 2015, fact fans!) that offers a more efficient way of estimating cardinalities as opposed to the more traditional HyperLogLog approach.

Anyway, here’s what I got so far. I wouldn’t use it anywhere near production right now, but fun to actually write something useful in Rust:

LogLog-Beta (Rust implementation)