简体   繁体   中英

Implementing functional programming in Perl

I am trying to learn pure functional programming language like Haskell as I am from Perl background and read that Perl can also implement functional programming techniques. So few questions came in mind:

  • Whether it is worth doing it in Perl 5?
  • Does Perl 6 will make a difference?
  • Can anybody suggest some code/examples implementing functional programming techniques in Perl?

  • Read Higher-Order Perl . You can buy it or download for free . It provides insights even to experienced Perl programmers.

    perl6 is still a work in progress, so even though perl6 has much improved support for functional programming at the language level (see perlgeek.de on currying in perl6 , for example), you'll probably want to start now with perl5 so you can get to work with what's out there. i recommend looking into cpan for higher-level library support...Array::Utils and others (there's a lot!)

    Functional programming is just programming, you can do it in any language. If you like how the Haskell API is laid out, you might like my Data::Monad module, which provides Moose roles for various Haskell typeclasses including Monad. (Unlike Haskell, though, there is no "fail" in my Monad, and all Monads are Functors.)

    Here's an example of exercising the various typeclasses in the context of a data structure that handles success or failure (like Control.Monad.Error):

    http://github.com/jrockway/data-monad/blob/master/t/error.t

    Note that it has the ability to convert usual Perl computations that can fail with an exception to a pure procedure that you can bind to other procedures. This lets "regular Perl" work inside a program designed to have a more functional control flow.

    Probably a bit late to the party but this little book is a very good example of implementing functional programming techniques in Perl: http://billhails.net/Book/

    The author builds a scheme interpretor in perl 5 from the ground up (and BTW the testimonials are a pure gold).

    The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

     
    粤ICP备18138465号  © 2020-2024 STACKOOM.COM