Closed
Description
Basically the same as std::to_string
. It should not be hard to implement as it is functionally equivalent to fmt::format("{}", XXX)
. Reasons that I would like to use fmt::to_string
in lieu of std::to_string
:
std::to_string
is not available on C++03.std::to_string
is horrendously slow on some implementations. Last time I checked, MSVC internally creates astringstream
for everystd::to_string
call.
Metadata
Metadata
Assignees
Labels
No labels