struct mrpt::system::CTimeLogger::TCallStats
Data of each call section: # of calls, minimum, maximum, average and overall execution time (in seconds)
See also:
#include <mrpt/system/CTimeLogger.h> struct TCallStats { // fields size_t n_calls {0}; double min_t {0}; double max_t {0}; double mean_t {0}; double total_t {0}; double last_t {0}; };