| 243 | |
| 244 | template <typename ToDo> |
| 245 | void ForEachInRect(m2::RectD const & rect, ToDo && toDo) const |
| 246 | { |
| 247 | m_tree.for_each(GetFunctor(rect, [&toDo](Value const & v) { toDo(v.m_val); })); |
| 248 | } |
| 249 | |
| 250 | template <typename ToDo> |
| 251 | void ForEachInRectEx(m2::RectD const & rect, ToDo && toDo) const |