MCPcopy Create free account
hub / github.com/FastFlowLM/FastFlowLM / int_to_string

Function int_to_string

src/include/nlohmann/detail/string_utils.hpp:21–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19
20template<typename StringType>
21void int_to_string(StringType& target, std::size_t value)
22{
23 // For ADL
24 using std::to_string;
25 target = to_string(value);
26}
27
28template<typename StringType>
29StringType to_string(std::size_t value)

Callers 2

to_stringFunction · 0.85

Calls 1

to_stringFunction · 0.70

Tested by

no test coverage detected