Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

I keep thinking that it wouldn't be so hard to add this. Of course, there's the question of what to call it, but I imagined that it would be OK to name it ${^Index}, and then have a pragma like use index; that would alias ${^Index} to $# so that you could just call it $#. Another possibility is that you could just use $# directlry---I have a suspicion that there is no program anywhere that actually uses $# at present.

To get it to work, you would need to arrange that any for block that contained a mention of ${^Index} would have a special lexical variable allocated on its pad. You would also need to have an index in the OP node for the for block that pointed to this pad entry. Then each time through the loop, Perl would look at the index, and if it was defined, would increment the referred-to variable.

The downside of all this is that it might slow down all loops, even those that didn't use ${^Index}, because they would have to look to see if it was there at run time. However, if the for code already keeps an iteration counter around (this is possible, although I haven't checked) one might be able to borrow it for free, or almost for free.

It would probably be a good project for an intermediate guts hacker. I've had it on my to-do list for a long time, but I never get around to doing it. Maybe it'll be ready for 5.7.

an iteration counter

In reply to Re: Implicit loop counter by Dominus
in thread Implicit loop counter by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (7)
As of 2024-04-19 08:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found