MCPcopy Create free account
hub / github.com/BehaviorTree/BehaviorTree.CPP / concat

Function concat

include/behaviortree_cpp/contrib/json.hpp:4349–4355  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4347
4348template<typename OutStringType = std::string, typename... Args>
4349inline OutStringType concat(Args && ... args)
4350{
4351 OutStringType str;
4352 str.reserve(concat_length(args...));
4353 concat_into(str, std::forward<Args>(args)...);
4354 return str;
4355}
4356
4357} // namespace detail
4358NLOHMANN_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