Crate re_int_histogram
source ·Expand description
A histogram with i64
keys and u32
counts, supporting both sparse and dense uses.
It supports high-level summaries of the histogram, so that you can quickly get a birds-eye view of the data without having to visit every point in the histogram.
You can also think of the histogram as a multi-set, where you can insert the same key multiple times and then query how many times you’ve inserted it.
Modules§
- tree 🔒The histogram is implemented as a trie.
Structs§
- An iterator over an
Int64Histogram
. - An inclusive range.
- RangeU64 🔒An inclusive range.
Functions§
- We use
u64
keys in the internal structures, because it is so much easier to work with