Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

RE: Blessables -- What Can You Make Into Objects?

by perlmonkey (Hermit)
on Apr 21, 2000 at 05:30 UTC ( [id://8314]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    package Cleaner;
    sub new 
    ...
    $foo = "\t\tFOO\t\t";
    $c->clean($foo);
    print $foo, "\n";
    
  2. or download this
    package main;
    $c = new Cleaner;
    ...
        'blessed' => sub { my $bar = $foo; $c->clean($bar) },
        'normal'  => sub { my $bar = $foo; $bar =~ s/^\s+|\s$//g },
    });
    
  3. or download this
    Benchmark: timing 1000000 iterations of blessed, normal...
       blessed: 43 wallclock secs (36.50 usr +  0.14 sys = 36.64 CPU)
        normal: 28 wallclock secs (24.19 usr +  0.08 sys = 24.27 CPU)
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (5)
As of 2024-03-28 15:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found