MCPcopy Create free account
hub / github.com/MeshInspector/MeshLib / listKeys

Function listKeys

source/MRViewer/MRUITestEngineControl.cpp:15–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13{
14
15static std::string listKeys( const MR::UI::TestEngine::GroupEntry& group )
16{
17 std::string ret;
18 bool first = true;
19 for ( const auto& elem : group.elems )
20 {
21 if ( first )
22 first = false;
23 else
24 ret += ", ";
25 ret += '`';
26 ret += elem.first;
27 ret += '`';
28 }
29 return ret;
30}
31
32static const Expected<const TestEngine::GroupEntry *> findGroup( std::span<const std::string> path )
33{

Callers 4

findGroupFunction · 0.85
pressButtonFunction · 0.85
readValueFunction · 0.85
writeValueFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected