MCPcopy Create free account
hub / github.com/OpenFodder/openfodder / arguments_string

Method arguments_string

Source/Utils/cxxopts.hpp:1606–1619  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1604 }
1605
1606 const std::string
1607 arguments_string() const
1608 {
1609 std::string result;
1610 for(const auto& kv: m_sequential)
1611 {
1612 result += kv.key() + " = " + kv.value() + "\n";
1613 }
1614 for(const auto& kv: m_defaults)
1615 {
1616 result += kv.key() + " = " + kv.value() + " " + "(default)" + "\n";
1617 }
1618 return result;
1619 }
1620
1621 private:
1622 NameHashMap m_keys{};

Callers

nothing calls this directly

Calls 2

keyMethod · 0.45
valueMethod · 0.45

Tested by

no test coverage detected