Home
last modified time | relevance | path

Searched defs:SortableEdgeWithData (Results 1 – 1 of 1) sorted by relevance

/dports/www/osrm-backend/osrm-backend-5.26.0/include/util/
H A Dstatic_graph.hpp68 template <> struct SortableEdgeWithData<void> struct
70 NodeIterator source;
71 NodeIterator target;
75 SortableEdgeWithData(NodeIterator source, NodeIterator target) : source(source), target(target) in SortableEdgeWithData() argument
79 bool operator<(const SortableEdgeWithData &right) const in operator <()
84 bool operator==(const SortableEdgeWithData &right) const in operator ==()
90 template <typename EdgeDataT> struct SortableEdgeWithData : SortableEdgeWithData<void> struct
92 using Base = SortableEdgeWithData<void>;
94 EdgeDataT data;
99 SortableEdgeWithData(NodeIterator source, NodeIterator target, Ts &&... data) in SortableEdgeWithData() argument