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

Method groups

Source/Utils/cxxopts.hpp:2681–2698  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2679}
2680
2681inline
2682std::vector<std::string>
2683Options::groups() const
2684{
2685 std::vector<std::string> g;
2686
2687 std::transform(
2688 m_help.begin(),
2689 m_help.end(),
2690 std::back_inserter(g),
2691 [] (const std::map<std::string, HelpGroupDetails>::value_type& pair)
2692 {
2693 return pair.first;
2694 }
2695 );
2696
2697 return g;
2698}
2699
2700inline
2701const HelpGroupDetails&

Callers

nothing calls this directly

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected