recursive_path_compare (references)ΒΆ
-
template<typename
T>
boollibsemigroups::recursive_path_compare(T const &x, T const &y) Compare two objects of the same type using recursive_path_compare.
Defined in
order.hpp.- Possible Implementation
recursive_path_compare( x.cbegin(), x.cend(), y.cbegin(), y.cend());
- Return
A
bool.- Exceptions
This function is
noexceptand is guaranteed never to throw.- See
- Template Parameters
T: the type of the objects to be compared.
- Parameters
x: const reference to the first object for comparisony: const reference to the second object for comparison