Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: Faster Hash Slices

by Eily (Monsignor)
on Nov 28, 2013 at 11:12 UTC ( [id://1064802]=note: print w/replies, xml ) Need Help??


in reply to Faster Hash Slices

You could win a little time by not copying your data twice : @{$ref}{@head} = split(/\t/); (which will even make split a little faster if you put the result in less elements than there are tab separated values in your string).

Or you could keep the array, and access its elements with constants, like was done here for example (it's done on a blessed arrayref in this case, but it works all the same).

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (6)
As of 2024-04-26 09:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found