| 4279 | |
| 4280 | template<typename OutStringType = std::string, typename... Args> |
| 4281 | inline OutStringType concat(Args && ... args) |
| 4282 | { |
| 4283 | OutStringType str; |
| 4284 | str.reserve(concat_length(args...)); |
| 4285 | concat_into(str, std::forward<Args>(args)...); |
| 4286 | return str; |
| 4287 | } |
| 4288 | |
| 4289 | } // namespace detail |
| 4290 | NLOHMANN_JSON_NAMESPACE_END |
no test coverage detected