Closed Kazuo256 closed 7 years ago
Fix #14.
This implementation relies on C++11's std::to_string. Is that alright?
std::to_string
In fact, it's possible to generalize this implementation to all types accepted by std::to_string.
Let's accept this event if this is 3x slower than the current implementation. I suggest that we switch to the faster std::to_chars (C++17) once it's available.
Fix #14.
This implementation relies on C++11's
std::to_string
. Is that alright?In fact, it's possible to generalize this implementation to all types accepted by
std::to_string
.