vote up 8 vote down star
3

There's more and more attention on languages such as Haskell and F# and although I can see the parallelisation benefits where processing large amounts of data, I cannot see where a functional language would fit into standard LOB development. So for the majority, is there a use for functional languages?

flag

59% accept rate

3 Answers

vote up 1 vote down check

Functional (and, in general, declarative) languages are well-suited for various kinds of data transforms, when you have one or more streams of input data, and have to output one or more transformed streams as output. A classic example of that is XSLT, though it's not functional (merely declarative; doesn't have functions as first-class values). Another is any sort of lexer or parser - writing a parser in a functional language such as Haskell is usually more straightforward, and results in more clear and concise code. On .NET specifically, as soon as I have to deal with some non-XML DSL which is more complicated than reasonable regexps can parse, I look at F# and FParsec.

link|flag
vote up 4 vote down

Multi paradigm languages such as Python give you the choice of most appropriate tool for the job, and features like comprehensions and closures help you write compact and concise production code. Little functions written without using anything but the platform supplied types can be very effective for code reuse, since you don't have to take an entire class hierarchy from a different package to get the specific functionality you are after, and you don't have to worry about side effects if you can see the functions you are calling are pure.

I used to write lots of procedural C and object oriented Python. I now write lots of procedural C (mainly for kernel level code) and otherwise I'll mainly write functional programming style Python. Sometimes object orientation is a great way to solve a problem, and I'll happily mix the paradigms even within a single module.

Choice of libraries and quality of implementation is important when selecting a platform. F# is interesting since .NET is a strong platform these days. Many of the other functional programming languages are research vehicles without the platform maturity to be a sensible choice.

link|flag
Well, arguably many multi-paradigm languages give you the mediocre-to-poor of all worlds. I would definitely say that goes for python (except in relation to OO, where it is fairly solid, but not the best by any means). – Marcin Nov 3 '08 at 14:27
1  
Python sucks at parallelism, sucks at functional programming, sucks at static checking, sucks at brevity... hardly "the choice of most appropriate tool for the job". – Jon Harrop May 12 at 20:04
@Jon: I won't argue with your claims about parallelism, FP, or static checking, but brevity? Unless you're comparing it with APL, Python does allow fairly brief expressions of most algorithms. – Novelocrat Aug 27 at 19:25
vote up 2 vote down

Well, why not?

Functional languages can do anything any other language can, and they force interfaces to be well-defined. They are particularly well suited to tasks that involve transforming data from one format to another, e.g. where XSLT would be used. In fact, XSLT is a functional language.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.