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

Re^2: normal array exists question

by JanneVee (Friar)
on Jul 21, 2004 at 18:27 UTC ( [id://376349]=note: print w/replies, xml ) Need Help??


in reply to Re: normal array exists question
in thread normal array exists question

Question: the List::Utils first, does do a linear scan for the first element that matches?

Replies are listed 'Best First'.
Re^3: normal array exists question
by Limbic~Region (Chancellor) on Jul 21, 2004 at 19:34 UTC
    JanneVee,
    The tutorial covers a bit of this, but I will go into more depth here. List::Util's first is designed to generic and portable. It is prototyped to $@ where the first argument is the code reference that will be applied to the remaining items in the list. It starts at the beginning and returns as soon as the code ref evaluates to true. This does not need to be an exact match as you could use a regex in block for instance. It does have a couple of issues with regards to efficiency.
    • It does not provide ability to pass by reference so the @_ stack of aliases has to be generated. This can be costly on large lists
    • The code reference has to be dereferenced for each item in the list until a match is found.
    Now you can roll your own to be more efficient but that defeats the purpose of having portable re-useable code. Additionally, shaving a second or two off of run time is seldom worth the programmer time required to achieve it.

    Cheers - L~R

Log In?
Username:
Password:

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

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

    No recent polls found