MCPcopy Create free account
hub / github.com/comaps/comaps / GetNextFeature

Method GetNextFeature

generator/feature_maker_base.cpp:38–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36}
37
38bool FeatureMakerBase::GetNextFeature(FeatureBuilder & feature)
39{
40 if (m_queue.empty())
41 return false;
42
43 feature = std::move(m_queue.front());
44 m_queue.pop();
45 return true;
46}
47
48void TransformToPoint(FeatureBuilder & feature)
49{

Callers 3

CollectMethod · 0.80
CollectMethod · 0.80
EmitMethod · 0.80

Calls 3

frontMethod · 0.80
popMethod · 0.80
emptyMethod · 0.45

Tested by

no test coverage detected