MCPcopy Create free account
hub / github.com/InteractiveComputerGraphics/SPlisHSPlasH / concat

Function concat

extern/json/json.hpp:4281–4287  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4279
4280template<typename OutStringType = std::string, typename... Args>
4281inline 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
4290NLOHMANN_JSON_NAMESPACE_END

Callers 15

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

Calls 3

concat_lengthFunction · 0.85
concat_intoFunction · 0.85
reserveMethod · 0.45

Tested by

no test coverage detected