Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re^2: How does map work?

by three18ti (Monk)
on Oct 26, 2013 at 20:36 UTC ( [id://1059842]=note: print w/replies, xml ) Need Help??


in reply to Re: How does map work?
in thread [Solved] How does map work?

thanks for the assist. Indeed my use of while was incorrect

Indeed HOP does doe a version of map that takes an iterator, and I'm sure it will just take plugging away at HOP some more, it starts to make sense after a few read throughs...

Replies are listed 'Best First'.
Re^3: How does map work?
by LanX (Saint) on Oct 26, 2013 at 21:57 UTC
    Hmm seems like HOP doesn't show how to reimplement plain map.

    But as a side note, perlsub has an example for grep :

    And here’s a reimplementation of the Perl "grep" operator: sub mygrep (&@) { my $code = shift; my @result; foreach $_ (@_) { push(@result, $_) if &$code; } @result; }

    HTH!

    Cheers Rolf

    ( addicted to the Perl Programming Language)

Re^3: How does map work?
by muba (Priest) on Oct 28, 2013 at 18:31 UTC

    There is one instance where while sets $_ (or at the very least has the appearance to do so), and that's in the special while( <$filehandle> ) {...} construction (or ... while <$filehandle> for that matter, I believe).

Log In?
Username:
Password:

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

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

    No recent polls found