@returns (empty if absent) role for the relation with given id.
| 97 | std::string_view GetNodeRole(uint64_t id) const { return FindRoleImpl(m_nodes, id); } |
| 98 | /// @returns (empty if absent) role for the relation with given id. |
| 99 | std::string_view GetRelationRole(uint64_t id) const { return FindRoleImpl(m_relations, id); } |
| 100 | |
| 101 | template <class ToDo> |
| 102 | void ForEachWay(ToDo & toDo) const |