MCPcopy Create free account
hub / github.com/bytedance/Fastbot_Android / splitString

Function splitString

native/Base.h:300–307  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

298 }
299
300 inline void
301 splitString(const std::string &str, std::vector<std::string> &strVec, char splitChar) {
302 std::stringstream ss(str);
303 std::string iter;
304 while (std::getline(ss, iter, splitChar)) {
305 strVec.push_back(iter);
306 }
307 }
308
309
310 template<typename T>

Callers 5

loadMixResMappingMethod · 0.85
loadValidTextsMethod · 0.85
loadBaseConfigMethod · 0.85
loadWhiteBlackListMethod · 0.85
loadInputTextsMethod · 0.85

Calls 1

push_backMethod · 0.80

Tested by

no test coverage detected