| 178 | } |
| 179 | |
| 180 | inline std::string doubleToString (double value) |
| 181 | { |
| 182 | if (std::isfinite (value)) return choc::text::floatToString (value, -1, true); |
| 183 | if (std::isnan (value)) return "\"NaN\""; |
| 184 | |
| 185 | return value >= 0 ? "\"Infinity\"" |
| 186 | : "\"-Infinity\""; |
| 187 | } |
| 188 | |
| 189 | //============================================================================== |
| 190 | template <typename Stream> |