Struct ethcore_util::stats::Histogram [] [src]

pub struct Histogram {
    pub bucket_bounds: Vec<U256>,
    pub counts: Vec<u64>,
}

Discretised histogram.

Fields

Bounds of each bucket.

Count within each bucket.

Methods

impl Histogram
[src]

Histogram of a sorted corpus if it at least spans the buckets. Bounds are left closed.

Trait Implementations

impl Debug for Histogram
[src]

Formats the value using the given formatter.

impl PartialEq for Histogram
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.