| 29 | |
| 30 | template <typename... T> |
| 31 | std::vector<std::string> StringUtil::toStringV(T... values) { |
| 32 | std::vector<std::string> target; |
| 33 | toStringVImpl(&target, values...); |
| 34 | return target; |
| 35 | } |
| 36 | |
| 37 | template <typename T> |
| 38 | std::string StringUtil::formatNumberMetric(T orig_value) { |
nothing calls this directly
no outgoing calls
no test coverage detected