ndhistogram/value/
mod.rs

1//! Bin Value types for ND-histograms
2//!
3//! This module contains implementations of types intended to be used as bin
4//! value types in [Histogram](crate::Histogram)s.
5//! See [crate front page](crate) for a summary of the provided types.
6//!
7mod weightedsum;
8pub use weightedsum::WeightedSum;
9mod sum;
10pub use sum::Sum;
11mod mean;
12pub use mean::Mean;
13mod weightedmean;
14pub use weightedmean::WeightedMean;