Return true only if the comparisons of all register elements are true inside of a specified sequence.
- Template Parameters
-
| t_idx_first | The index of the first register element that is part of the sequence |
| t_length | The number of elements in the sequence |
| T_RegisterType | The register type |
| T_CompFunc | The Type of a callable object that performs the register element comparison. |
- Parameters
-
| [in] | lhs | The register left of the operator |
| [in] | rhs | The register right of the operator |
| [in] | comp_func | A comparison function or functor that provides the comparison of the register elements. Functors should be preferred to assure inlining. See https://stackoverflow.com/a/12718449/6700329 |
- Returns
true or false