Clarification, please: Would
@x = @y alias @x to @y, so push/shift/clear/whatever done to one would affect the other, while @x[0..$#x] = @y[0..$#y] would alias only the array elements, not the whole array, so that push/shift/clear/whatever done to one array would leave the other unaffected?