shortlex_compare (pointers)ΒΆ
-
template<typename
T
>
boollibsemigroups
::
shortlex_compare
(T *const x, T *const y) Compare two objects via their pointers using shortlex_compare.
Defined in
order.hpp
.- Possible Implementation
shortlex_compare( x->cbegin(), x->cend(), y->cbegin(), y->cend());
- Return
A
bool
.- See
- Template Parameters
T
: the type of the objects to be compared.
- Parameters
x
: pointer to the first object for comparisony
: pointer to the second object for comparison