Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: List-to-Scalar Function?

by perlmonkey (Hermit)
on May 09, 2001 at 03:45 UTC ( [id://78994]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    sub operate (&@) {
      my $sub = shift;
      local $~;
      $~ = &$sub($_) for @_;
      return $~
    }
    
  2. or download this
    use strict;
    sub operate (&@) {
      my $sub = shift;
    ...
    open FILE, $0;
    my $count = operate { $~ + /operate/ } <FILE>;
    print "Count = $count\n";
    
  3. or download this
    max = 645
    string = 462671236452354
    count = 4
    

Log In?
Username:
Password:

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

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

    No recent polls found