Struct Estimate
Synopsis
#include <include/internal/benchmark/catch_estimate.hpp>
template <typename Duration>
struct Estimate
Description
No description yet.
Methods
operator Estimate< Duration2 > |
Source
Lines 16-27 in include/internal/benchmark/catch_estimate.hpp.
template <typename Duration>
struct Estimate {
Duration point;
Duration lower_bound;
Duration upper_bound;
double confidence_interval;
template <typename Duration2>
operator Estimate<Duration2>() const {
return { point, lower_bound, upper_bound, confidence_interval };
}
};