http://qs321.pair.com?node_id=110761


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!