Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: Making an Object faster?

by BrowserUk (Patriarch)
on Jun 16, 2005 at 23:34 UTC ( [id://467502]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    P:\test>467452 -N=1
             Rate   OO5   OO4   OO3   OO2   OO1  subs
    ...
    OO1  4.39/s 210% 206% 132% 129%   --  -0%
    subs 4.41/s 212% 207% 133% 130%   0%   --
    
  2. or download this
    #! perl -slw
    use strict;
    ...
            my @modified = $obj->sumem;
        ],
    };
    
  3. or download this
    use strict;
    
    ...
        return map{ scalar reverse } @_;
    }
    1;
    
  4. or download this
    #! perl -slw
    use strict;
    ...
        return map{ scalar reverse } @_;
    }
    1;
    
  5. or download this
    #! perl -slw
    use strict;
    ...
        @{ $self } =  map{ scalar reverse } @{ $self };
    }
    1;
    
  6. or download this
    #! perl -slw
    use strict;
    ...
        @{ $self->{ data } } =  map{ scalar reverse } @{ $self->{ data } }
    +;
    }
    1;
    
  7. or download this
    #! perl -slw
    use strict;
    ...
        $self->_setData( map{ scalar reverse } $self->_getData() );
    }
    1;
    
  8. or download this
    #! perl -slw
    use strict;
    ...
        $self->_setData( map{ scalar reverse } $self->_getData() );
    }
    1;
    

Log In?
Username:
Password:

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

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

    No recent polls found