Return true only if the comparisons of all selected register elements yields true.
- Template Parameters
-
| t_cmp | A parameter pack of boolean values with the size of the number of register elements. If a value is true, the corresponding element is compared. Otherwise, it is ignored |
| 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