http://qs321.pair.com?node_id=630289


in reply to Re^2: Using ternary operator as lvalue in push
in thread Using ternary operator as lvalue in push

well, I also expect something like this to work in Perl 6:
($cond ?? @x :: @y).push(<a b c>);
which is a lot more understandable syntax in my opinion.

cheers,
Aldo

King of Laziness, Wizard of Impatience, Lord of Hubris

Replies are listed 'Best First'.
Re^4: Using ternary operator as lvalue in push
by polettix (Vicar) on Aug 02, 2007 at 14:57 UTC
    As a matter of fact it does:
    pugs$ cat prova.pl && ./pugs prova.pl my @x = my @y = (); ((False,True).pick ?? @x !! @y).push(<a b c>); say "x: @x[]"; say "y: @y[]"; x: a b c y:
    At least now!

    Flavio
    perl -ple'$_=reverse' <<<ti.xittelop@oivalf

    Don't fool yourself.