Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Re: Accessing Arrays and Lists

by danger (Priest)
on Jun 27, 2002 at 18:50 UTC ( #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? | Other CB clients
Other Users?
Others exploiting the Monastery: (1)
As of 2023-03-21 04:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    Which type of climate do you prefer to live in?






    Results (59 votes). Check out past polls.

    Notices?