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

(tye)Re: Closures as Itterators

by tye (Sage)
on Jun 30, 2001 at 21:27 UTC ( [id://92929]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    LINE: {
        # ...
        redo LINE   if # ...
        # ...
    }
    
  2. or download this
      my $done = 0;
    # ...
      sub {
    ...
          }
          return( $key, \@data )   if  $allow;
          return;
    
  3. or download this
    while(
        conditional
    ) {
        code
    }
    
  4. or download this
    for(
        init;
        condition;
    ...
    ) {
        code;
    }
    
  5. or download this
    init;
    while(
        contition
    ...
    } continue {
        cont;
    }
    
  6. or download this
      my $done= 0;
      # ...
          my( @data, $row, $key );
    ...
          }
          return( $key, \@data );
      }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (6)
As of 2024-04-23 13:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found