| 71 | } |
| 72 | |
| 73 | inline std::string format_float_csv(float value, int precision) { |
| 74 | std::ostringstream ss; |
| 75 | ss << std::fixed << std::setprecision(precision) << value; |
| 76 | return ss.str(); |
| 77 | } |
| 78 | |
| 79 | inline std::string get_date_yyyymmdd() { |
| 80 | auto now = std::chrono::system_clock::now(); |