Are the function templates make_ordered_pair and make_unordered_pair needed? See
|
constexpr auto make_ordered_pair(T1&& v1, T2&& v2); |
and
|
constexpr auto make_unordered_pair(T1&& v1, T2&& v2); |
Specifically, deduction guides should alleviate the need for these function templates.
Are the function templates
make_ordered_pairandmake_unordered_pairneeded? Seegraph/include/graph/ordered_pair.hpp
Line 104 in a984812
graph/include/graph/ordered_pair.hpp
Line 197 in a984812
Specifically, deduction guides should alleviate the need for these function templates.