Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: Style, *again*

by Abigail-II (Bishop)
on Apr 10, 2003 at 19:42 UTC ( [id://249722]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: Style, *again*
in thread Style, *again*

I see.

I do sometimes write the constant first, because I want to reduce the amount of punctuation. If you write:

foo $x, $y == 4

then foo isn't called with arguments $x and $y. You'd need to write that as:

foo ($x, $y) == 4

Or

4 == foo $x, $y

And since == is a symmetric operation (assuming it's not overloaded), I don't feel strongly for the "topic first" argument. But I can see your point.

Abigail

Replies are listed 'Best First'.
Re: Re: Style, *again*
by demerphq (Chancellor) on Aug 18, 2003 at 18:28 UTC

    And since == is a symmetric operation

    Which is the reason I often put the constant first. Turning an == into an = accidentally results in a non symmetric operation which is illegal when the left side is a constant. Which helps catch silly mistakes that the compiler doesnt notice (like in the conditional part of a ternary op.)


    ---
    demerphq

    <Elian> And I do take a kind of perverse pleasure in having an OO assembly language...

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://249722]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (2)
As of 2024-04-19 18:16 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found