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

Function getKeys

pdal/Options.hpp:200–210  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

198 }
199
200 StringList getKeys() const
201 {
202 StringList keys;
203
204 for (auto it = m_options.begin(); it != m_options.end();
205 it = m_options.upper_bound(it->first))
206 {
207 keys.push_back(it->first);
208 }
209 return keys;
210 }
211
212 std::vector<Option> getOptions(std::string const& name="") const;
213 StringList toCommandLine() const;

Callers 1

toMetadataMethod · 0.85

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected