| 4347 | |
| 4348 | template<typename OutStringType = std::string, typename... Args> |
| 4349 | inline OutStringType concat(Args && ... args) |
| 4350 | { |
| 4351 | OutStringType str; |
| 4352 | str.reserve(concat_length(args...)); |
| 4353 | concat_into(str, std::forward<Args>(args)...); |
| 4354 | return str; |
| 4355 | } |
| 4356 | |
| 4357 | } // namespace detail |
| 4358 | NLOHMANN_JSON_NAMESPACE_END |
no test coverage detected