JayBeams  0.1
Another project to have fun coding.
histogram_summary.hpp
Go to the documentation of this file.
1 #ifndef jb_histogram_summary_hpp
2 #define jb_histogram_summary_hpp
3 
4 #include <iosfwd>
5 
6 namespace jb {
7 
8 /// A simple class to capture summary information about a histogram
10  double min;
11  double p25;
12  double p50;
13  double p75;
14  double p90;
15  double p99;
16  double max;
17  std::size_t nsamples;
18 };
19 
20 std::ostream& operator<<(std::ostream& os, histogram_summary const& x);
21 
22 } // namespace jb
23 
24 #endif // jb_histogram_summary_hpp
std::ostream & operator<<(std::ostream &os, as_hhmmssu const &x)
Format as_hhmmssu into an iostream.
Definition: as_hhmmss.cpp:8
A simple class to capture summary information about a histogram.
The top-level namespace for the JayBeams library.
Definition: as_hhmmss.hpp:7