MCPcopy Create free account
hub / github.com/Open-GD/OpenGD / concat

Function concat

Source/external/json.hpp:4277–4283  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4275
4276template<typename OutStringType = std::string, typename... Args>
4277inline 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
4286NLOHMANN_JSON_NAMESPACE_END

Callers 15

nameMethod · 0.85
diagnosticsMethod · 0.85
createMethod · 0.85
position_stringMethod · 0.85
createMethod · 0.85
createMethod · 0.85
createMethod · 0.85
createMethod · 0.85
from_jsonFunction · 0.85
get_arithmetic_valueFunction · 0.85
start_objectFunction · 0.85
start_arrayFunction · 0.85

Calls 2

concat_lengthFunction · 0.85
concat_intoFunction · 0.85

Tested by

no test coverage detected