At 03:35 PM 9/21/00 -0400, Buddha Buck wrote:
>At 03:26 PM 9/21/00 -0400, Karl Glazebrook wrote:
>
>> > > Finally as an overload expert what do you think about the proposals
>> > > to make arrays overloadable objects so one can say things like:
>> > >
>> > > @x = 3 * @y;
>
>What do you think of:
>
>   $x[|i] = 3 * $y[|i];
>
>or
>
>   @x = 3 * $y[|i];
>
>It's not as clean as @x = 3 * @y, but it is cleaner context-wise.

And one could argue that:

    @x = map 3*^_, @y;

is cleaner yet...

>>Karl

Reply via email to