Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

(zdog) Re: (2) Filling an array

by zdog (Priest)
on Sep 07, 2001 at 04:27 UTC ( [id://110804]=note: print w/replies, xml ) Need Help??


in reply to Re: Filling an array
in thread Filling an array

You can eliminate the $i var by doing the following:

for (0 .. $#array) { print "$_ $array[$_]\n" }

Also, I would think you'd be better off using one of the other suggestions like for() or the x operator rather than map() for efficiency reasons.

Zenon Zabinski | zdog | zdog7@hotmail.com

Replies are listed 'Best First'.
Re: (zdog) Re: (2) Filling an array
by spartan (Pilgrim) on Sep 10, 2001 at 19:50 UTC
    ++zdog
    for (0 .. $#array) { print "$_ $array[$_]\n" }
    I like that... very clean, to the point, and quite readable. The only reason I chose map was to flex an all too atrophied brain muscle. :)
    TMTOWTDI

    Very funny Scotty... Now PLEASE beam down my PANTS!

Log In?
Username:
Password:

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

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

    No recent polls found