14#include <nlohmann/detail/abi_macros.hpp>
16NLOHMANN_JSON_NAMESPACE_BEGIN
20template<
typename StringType>
21void int_to_string(StringType& target, std::size_t value)
25 target = to_string(value);
28template<
typename StringType>
29StringType to_string(std::size_t value)
32 int_to_string(result, value);
37NLOHMANN_JSON_NAMESPACE_END
detail namespace with internal helper functions
定义 from_json.hpp:43