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

Class LessCoverageCell

libs/drape_frontend/read_manager.cpp:22–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20namespace
21{
22struct LessCoverageCell
23{
24 bool operator()(std::shared_ptr<TileInfo> const & l, TileKey const & r) const { return l->GetTileKey() < r; }
25
26 bool operator()(TileKey const & l, std::shared_ptr<TileInfo> const & r) const { return l < r->GetTileKey(); }
27
28 bool operator()(std::shared_ptr<TileInfo> const & l, std::shared_ptr<TileInfo> const & r) const
29 {
30 return l->GetTileKey() < r->GetTileKey();
31 }
32};
33} // namespace
34
35bool ReadManager::LessByTileInfo::operator()(std::shared_ptr<TileInfo> const & l,

Callers 1

UpdateCoverageMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected