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

Re^6: sub that sets $_

by holli (Abbot)
on Jun 28, 2005 at 14:08 UTC ( [id://470642]=note: print w/replies, xml ) Need Help??


in reply to Re^5: sub that sets $_
in thread sub that sets $_

I have to pass there because I don't understand what this has to do with $_ being a default for/foreach parameter.
Well, nothing. $_ is the default variable for a for/foreach loop. That's not the point.

The point here is that the return value of a subroutine or method does not set $_ automatically. You suggested to use a for/foreach loop instead of a while loop, and that will not work because the method "chunk" is a iterator that only returns a single scalar per call. Thus, since for/foreach works on lists, the loops block will only be executed once.

In the while-loop however the block will be executed for every iteration until "chunk" returns false.

To make for/foreach work here, the ChunkReader-class would have to return a list of chunks and that, as said, is a waste of memory.

Log In?
Username:
Password:

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

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

    No recent polls found