@brief convert numeric type object to string for generic programming code
| 175 | /// @brief convert numeric type object to string |
| 176 | /// for generic programming code |
| 177 | inline std::string NumberToString(double n) { return DoubleToString(n); } |
| 178 | inline std::string NumberToString(float n) { return FloatToString(n); } |
| 179 | inline std::string NumberToString(int n) { return IntegerToString(n); } |
| 180 | inline std::string NumberToString(unsigned int n) { return IntegerToString(n); } |
no test coverage detected