in reply to Re: RFC: Is there more to alias?
in thread RFC: Is there more to alias?
Note that alias @x[0..$#x] = @y[0..$#y] would only do what you probably want when $#x == $#y. If you simply want to replace the contents of @x with aliases, use alias +(@x) = @y (or perhaps alias((@x) = @y), matter of taste)
|
---|