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

Method leaves

pdal/PipelineManager.cpp:528–535  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

526
527
528std::vector<Stage *> PipelineManager::leaves() const
529{
530 std::vector<Stage *> llist = m_stages;
531 for (Stage *s : m_stages)
532 for (Stage *ss : s->getInputs())
533 Utils::remove(llist, ss);
534 return llist;
535}
536
537
538void PipelineManager::replace(Stage *sOld, Stage *sNew)

Callers 2

makeJSONPipelineMethod · 0.80
parsePipelineFunction · 0.80

Calls 1

removeFunction · 0.85

Tested by

no test coverage detected