MCPcopy Create free account
hub / github.com/PDAL/PDAL / children

Function children

pdal/Metadata.hpp:618–630  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

616 { return m_impl->m_descrip; }
617
618 MetadataNodeList children() const
619 {
620 MetadataNodeList outnodes;
621
622 const MetadataSubnodes& nodes = m_impl->m_subnodes;
623 for (auto si = nodes.begin(); si != nodes.end(); ++si)
624 {
625 const MetadataImplList& l = si->second;
626 for (auto li = l.begin(); li != l.end(); ++li)
627 outnodes.push_back(MetadataNode(*li));
628 }
629 return outnodes;
630 }
631
632 MetadataNodeList children(const std::string& name) const
633 {

Callers 3

findFunction · 0.85
findChildrenFunction · 0.85
findChildFunction · 0.85

Calls 4

MetadataNodeFunction · 0.70
beginMethod · 0.45
endMethod · 0.45
findMethod · 0.45

Tested by

no test coverage detected