| 297 | } |
| 298 | |
| 299 | CountryTree::Node const * CountryTree::FindFirst(CountryId const & key) const |
| 300 | { |
| 301 | if (IsEmpty()) |
| 302 | return nullptr; |
| 303 | |
| 304 | NodesBufferT found; |
| 305 | Find(key, found); |
| 306 | if (found.empty()) |
| 307 | return nullptr; |
| 308 | return found[0]; |
| 309 | } |
| 310 | |
| 311 | CountryTree::Node const * CountryTree::FindFirstLeaf(CountryId const & key) const |
| 312 | { |
no test coverage detected