Aldo Calpini wrote:

Damian Conway wrote:

 >    @s = 'item' _ [EMAIL PROTECTED];

That's:

@s = 'item »_« @x;


(just checking that my unerstanding is correct, don't want to be nitpicking :-)

assuming that you meant to prepend the string "item" to each element of @x, isn't that:

@s = 'item' »~« @x;

If Rod meant concatenation, yes it should be C<~>. I was just reproducing what he wrote.



furthermore, given that the operator "hyperates" on one side only, shouldn't this be:

@s = 'item' ~« @x;

The rule, as I understand it, is that unaries have one hypermarker and binaries have two.


Damian

Reply via email to