-
As far as I understand it, there is no option to restrict the relative positioning of arguments or the documentation may be unclear to me or missing. I would like to have where after an occurence of any element of ArgGroup2 no occurence of any element in ArgGroup1 and after an occurence of any element of ArgGroup3 no occurence of any element in ArgGroup2 and 1 happens. ArgGroup1 could be indicated by index(1), ArgGroup2 by index(2), etc. If one would implement this in loop with a match, this would boil down to
In my use case I need Am I wrong on this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
If ArgGroup1 contains |
Beta Was this translation helpful? Give feedback.
If ArgGroup1 contains
a
andb
,ArgGroup2
containsc
andd
. Set the arg groups as required and then index all the args in increasing order (a=1, b=2, c=3, d=4). That should give you what you want.