Metafunction to find the indices of values in one tuple in another tuple. More...
Metafunction to find the indices of values in one tuple in another tuple.
For example, say we have the tuple <2,5,7> and the superset tuple <1,2,3,5,7,8>. The output is expected to be <1,3,4>.
Subset | Tuple of values that we are searching for. |
AllValues | Tuple of all values. Should be a superset of Subset |