in reply to Re: Re: Is "ref $date eq 'ARRAY'" wrong?
in thread Is "ref $date eq 'ARRAY'" wrong?

I can't make a serious justification, other than to visually group parts of an expression.

push @array => $foo, $bar, $baz; join '|' => $foo, $bar, $baz; map func($_) => $foo, $bar, $baz;

In this case, while the arrow appears reversed, I do it for stylistic consistency with the other expressions.

Cheers,
Ovid

New address of my CGI Course.

Replies are listed 'Best First'.
Re: Re: Re: Re: Is "ref $date eq 'ARRAY'" wrong?
by diotalevi (Canon) on Dec 19, 2003 at 23:43 UTC
    Hm, ok. That's an interesting idea anyway.