Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Filling an array

by spartan (Pilgrim)
on Sep 07, 2001 at 02:00 UTC ( [id://110761]=note: print w/replies, xml ) Need Help??


in reply to Filling an array

++dragonchild
I was inspired by your map example to do something like this instead:
$value=" 1 "; @array=map {$_=$value} (1..100); $i=0; foreach (@array) { print "$i $_\n"; $i++; }
The $i variable (used as an incrementer) and the foreach merely proves the map statement.
-spartan

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

Replies are listed 'Best First'.
(zdog) Re: (2) Filling an array
by zdog (Priest) on Sep 07, 2001 at 04:27 UTC
    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

      ++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://110761]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (3)
As of 2024-04-25 05:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found