Is $x treated like a scalar, in which case the entire Array is stringified and matched, or is $x treated like an alternation of elements from the array?
Contrast with:
my @x = <a b c d>; 'a b c d' ~~ / @x /;
In this case, we know that it's an alternation of matches.
What's the result of something like...?
Is $x treated like a scalar, in which case the entire Array is stringified and matched, or is $x treated like an alternation of elements from the array?
Contrast with:
In this case, we know that it's an alternation of matches.
Pm