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