MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / getArgumentValue

Method getArgumentValue

src/Core/Utils/ExecUtils.cpp:18–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16 }
17
18 std::string RunArgsParser::getArgumentValue(const std::string& arg) const
19 {
20 char** itr = std::find(start, start + size, arg);
21 if (itr != (start + size) && ++itr != (start + size))
22 {
23 return std::string(*itr);
24 }
25 return "";
26 }
27} // namespace obe::Utils::Exec

Callers

nothing calls this directly

Calls 2

findFunction · 0.50
stringClass · 0.50

Tested by

no test coverage detected