MCPcopy Create free account
hub / github.com/Tiiny-AI/PowerInfer / concat

Function concat

examples/server/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.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.80

Tested by

no test coverage detected