1 #ifndef OSMIUM_OSM_UNDIRECTED_SEGMENT_HPP 2 #define OSMIUM_OSM_UNDIRECTED_SEGMENT_HPP 54 if (location2 < location1) {
67 return (lhs.first() == rhs.first() && lhs.second() < rhs.second()) || lhs.first() < rhs.first();
85 template <
typename TChar,
typename TTraits>
86 inline std::basic_ostream<TChar, TTraits>& operator<<(std::basic_ostream<TChar, TTraits>& out,
const osmium::UndirectedSegment& segment) {
87 return out << segment.
first() <<
"--" << segment.second();
92 #endif // OSMIUM_OSM_UNDIRECTED_SEGMENT_HPP bool operator<=(const Changeset &lhs, const Changeset &rhs)
Definition: changeset.hpp:461
Definition: segment.hpp:46
Definition: undirected_segment.hpp:48
constexpr osmium::Location first() const noexcept
Return first Location of Segment.
Definition: segment.hpp:59
bool operator<(const Changeset &lhs, const Changeset &rhs)
Definition: changeset.hpp:453
UndirectedSegment(const osmium::Location &location1, const osmium::Location &location2)
Definition: undirected_segment.hpp:52
Namespace for everything in the Osmium library.
Definition: assembler.hpp:53
Definition: location.hpp:271
bool operator>=(const Changeset &lhs, const Changeset &rhs)
Definition: changeset.hpp:465
bool operator>(const Changeset &lhs, const Changeset &rhs)
Definition: changeset.hpp:457
void swap_locations()
Definition: segment.hpp:70