Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: Re: Accessing Arrays and Lists

by danger (Priest)
on Jun 27, 2002 at 18:50 UTC ( [id://177812]=note: print w/replies, xml ) Need Help??


in reply to Re: Accessing Arrays and Lists
in thread Accessing Arrays and Lists

Just to clarify. Parens immediately after a function are taken as delimiters for the argument list (as you rightly explained) --- but that has nothing to do with Perl's prototypes:

sub foo { # no prototype here return ('a','b','c'); } # print (foo)[0]; # same error print +(foo)[0];

I also show the unary + op as a better generalization of your last example --- it disambiguates without imposing numeric context.

Replies are listed 'Best First'.
Re: Re: Re: Accessing Arrays and Lists
by demerphq (Chancellor) on Jun 27, 2002 at 19:45 UTC
    DOH.

    Of course you're right.

    I was thinking of the situation where the prototyping of print (which is the prototyping I meant, not the prototyping of stat) where it treats a function call as a filehandle. I know I've been nailed by that one before. (Although annoyingly i cant think of an example at the minute. Anybody knows of one please post it for the record)

    Oh and thanks, I had forgotten the + trick.

    Yves / DeMerphq
    ---
    Writing a good benchmark isnt as easy as it might look.

Log In?
Username:
Password:

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

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

    No recent polls found