active questions tagged functional-programming - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T06:48:59Zhttp://stackoverflow.com/feeds/tag/functional-programminghttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1514148/looking-for-learning-exercise-implement-these-monads4looking for learning exercise: implement these monadsbrad2009-10-03T16:05:40Z2009-12-19T05:05:58Z
<p>When learning about new programming subjects I usually follow a pattern: I read about it, I understand it, and then I code up a few examples to make sure I really <em>get it</em>.</p>
<p>I've read a lot about monads, and I'm confident that I understand and get them. I'm now at a stage where I'd really like to code up a few monads to solidify my understanding, and really figure out what it takes to implement <em>bind</em> for a variety of types.</p>
<p>The problem is that I can't think of many obvious monads to implement, so I'm looking for recommendations. Preferably, I'd like a list of recommendations, with some easy ones and some not so easy ones. </p>
<p>I also realize that while monads are used to 'encapsulate' side effects in functional programs, they are also more general than that. So, I'd like the recommendations to include monads that both encapsulate side effects and some general ones. </p>
<p>Thanks!</p>
<p>(as a side note: I'll be working with f# to do this, but I think this question could apply to any functional language). </p>
http://stackoverflow.com/questions/1909496/more-explanation-on-lexical-binding-in-closures3More explanation on Lexical Binding in Closures?ajay2009-12-15T18:43:55Z2009-12-19T04:25:21Z
<p><strong>There are many SO posts related to this, but I am asking this again with a different purpose</strong></p>
<p>I am trying to understand why closures are important and useful. One of things that I've read in other SO posts related to this is that when you pass a variable to closure, the closure starts remembering this value from then onwards. Is this the entire Technical aspect of it or there is more to what happens there.</p>
<p>What I wonder then is what would happen when the variable used inside the closure gets modified from outside. Should they be constants only?</p>
<p>In the language Clojure, I can do the following: But since there are value is immutable, this issue does not arise. What about other languages and what is the proper technical definition of a closure?</p>
<pre><code>(defn make-greeter [greeting-prefix]
(fn [username] (str greeting-prefix ", " username)))
((make-greeter "Hello") "World")
</code></pre>
http://stackoverflow.com/questions/1930903/bind-vs-lambda2Bind Vs Lambda?AraK2009-12-18T21:58:21Z2009-12-19T02:07:17Z
<p>Hi,</p>
<p>I have a question about which style is preferred: std::bind Vs lambda in C++0x. I know that they serve -somehow- different purposes but lets take an example of intersecting functionality.</p>
<p>Using <code>lambda</code>:</p>
<pre><code>uniform_int<> distribution(1, 6);
mt19937 engine;
// lambda style
auto dice = [&]() { return distribution(engine); };
</code></pre>
<p>Using <code>bind</code>:</p>
<pre><code>uniform_int<> distribution(1, 6);
mt19937 engine;
// bind style
auto dice = bind(distribution, engine);
</code></pre>
<p>Which one should we prefer? why? assuming more complex situations compared to the mentioned example. i.e. What are the advantages/disadvantages of one over the other?</p>
http://stackoverflow.com/questions/161125/whats-wrong-with-f9What's wrong with F#?Erik2008-10-02T06:43:22Z2009-12-19T00:18:50Z
<p>What's wrong with F#?</p>
<p>That is, what about the language would make it unsuitable for production environments (<strong>excluding</strong> the fact that it's not yet officially graduated from MS Research)? I'm interested in functional programming (especially on .NET) and I'd like to learn this language, but I worry about its applicability in the real world.</p>
<p><strong>Edit</strong>: I'm aware of the benefits of F# - I want this question to concentrate on the deficits - I want to know why F# would be a poor choice, and for what sorts of projects it would be a poor choice.</p>
<p><strong>Edit 2</strong>: I asked this question a while ago, when F# was still in beta, but I believe it's more relevant a question now as it nears release with Visual Studio 2010. Any new answers would be great to see, especially now that many people have had the chance to get their hands on it and figure it out.</p>
http://stackoverflow.com/questions/1883618/does-functional-programming-allow-better-runtime-compiler-optimizations7Does Functional programming allow better runtime compiler optimizations?ajay2009-12-10T20:04:55Z2009-12-17T19:02:55Z
<p><em>NOTE: Already made this a Wiki. I don't care what this question is tagged as, as long as there is a good discussion.</em></p>
<p>I've heard that since in pure functional programs, there are no side effects and values dont mutate, it makes it easier for the compiler to make more runtime optimizations. To what extent is this true?</p>
<p>If this is true, my next concern is what is the loss in freedom that we are trading this for? I mean, in languages like C++/C the developer is totally in control and can tweak a lot of things. If we give away this job to the compiler, we lose that opportunity. The bright side of this is that even a non-expert programmer can write good code. Furthermore, these days with so many layers of cache in the machine architecture, may be even an expert cannot really do anything worthwhile. So, delegating this job to the compiler that knows more about the underlying architecture than the programmer does, is a good idea.</p>
<p>What are your suggestions? </p>
http://stackoverflow.com/questions/1920998/is-it-possible-to-curry-the-other-way-around-in-scala3Is it possible to curry the other way around in Scala?Geo2009-12-17T11:04:47Z2009-12-17T18:55:49Z
<p>Let's assume this function:</p>
<pre><code>def autoClosing(f: {def close();})(t: =>Unit) = {
t
f.close()
}
</code></pre>
<p>and this snippet:</p>
<pre><code>val a = autoClosing(new X)(_)
a {
println("before close")
}
</code></pre>
<p>is it possible to curry the first part? Something like:</p>
<pre><code>val a = autoClosing(_) { println("before close") }
</code></pre>
<p>so that I could send the objects on which close should be performed, and have the same block executed on them?</p>
http://stackoverflow.com/questions/1919097/functional-programming-what-is-an-improper-list5Functional Programming: what is an "improper list" ?jldupont2009-12-17T02:18:02Z2009-12-17T18:26:39Z
<p>Could somebody explain what an "improper list" is?</p>
<p><strong>Note</strong>: Thanks to all ! All you guys rock!</p>
http://stackoverflow.com/questions/169812/will-there-be-a-functional-language-which-does-for-the-java-community-what-f-doe15Will there be a functional language which does for the Java community what F# does for the .NET community?_ande_turner_2008-10-04T05:39:20Z2009-12-17T02:20:43Z
<p>Will there be a functional language which does for the Java community what F# does for the .NET community?</p>
<p>What functional programming languages are available, or in development, for the JVM?</p>
http://stackoverflow.com/questions/1916692/are-side-effects-possible-in-pure-functional-programming5Are side-effects possible in pure functional programmingJeremy E2009-12-16T18:33:34Z2009-12-16T20:13:01Z
<p>I have been trying to wrap my head around functional programming for a while now? I have looked up lambda calculus, LISP, OCML, F# and even combinatorial logic but the main problem I have is how do you do things that require side effects like (interacting with a user, communicating with a remote service, or even handle simulating using random sampling) without violating the fundamental premise of pure functional programming which is, that for a given input the output is deterministic? I hope I am making sense, if not I welcome any attempts to properly educate me. Thanks in advance.</p>
http://stackoverflow.com/questions/355314/clojure-vs-haskell-for-web-applications12Clojure vs Haskell for web applications?unknown (google)2008-12-10T07:12:09Z2009-12-16T10:22:26Z
<p>I want to learn a functional language that will be good for building web applications in the future. I am choosing between Clojure and Haskell. Which one is a better choice for my purpose?</p>
http://stackoverflow.com/questions/1905099/what-are-some-good-books-for-learning-haskell-and-or-ocaml-ml-in-particular-an3What are some good books for learning Haskell (and/or OCaml/ML) in particular, and functional programming style in general?may2009-12-15T04:04:33Z2009-12-16T09:14:54Z
<p>I was spoiled by the excellence of "Programming Ruby" when I was in high school, and ever since I've always looked for a combined introduction & language reference book for every new language I attempt. </p>
<p>Note that it doesn't have to be a dead-tree book; any well-written, high-quality resource would be great, regardless of media. This includes blog posts, pdfs, wikis, etc.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1911096/how-do-you-curry-the-2nd-or-3rd-4th-parameter-in-f-or-any-functional-lan2How do you curry the 2nd (or 3rd, 4th, ...) parameter in F# or any functional language?Dax2009-12-15T23:04:21Z2009-12-15T23:26:46Z
<p>I'm just starting up with F# and see how you can use currying to pre-load the 1st parameter to a function. But how would one do it with the 2nd, 3rd, or whatever other parameter? Would named parameters to make this easier? Are there any other functional languages that have named parameters or some other way to make currying indifferent to parameter-order?</p>
http://stackoverflow.com/questions/1907709/a-simple-wrapper-for-f-to-do-matrix-operations2A Simple Wrapper for F# to do matrix operations Yin Zhu2009-12-15T14:08:47Z2009-12-15T14:26:06Z
<p>Hi there!</p>
<p>This is a relatively long post. F# has a <a href="http://research.microsoft.com/en-us/um/cambridge/projects/fsharp/manual/FSharp.PowerPack/Microsoft.FSharp.Math.type%5FMatrix-1.html" rel="nofollow">matrix</a> and <a href="http://research.microsoft.com/en-us/um/cambridge/projects/fsharp/manual/FSharp.PowerPack/Microsoft.FSharp.Math.type%5FVector-1.html" rel="nofollow">vector</a> type(in PowerPack not in the Core) now. This is great! Even Python's numerical computing ability is from the third part. </p>
<p>But the functions provided there is limited to the matrix and vector arithmetic, so to do inversion, decompositions etc. we still need to use another library. I am now using the latest <a href="http://www.codeplex.com/dnAnalytics" rel="nofollow">dnAnalytics</a>, which is merging into Math.Net project. But Math.Net project has no updates to the public for more than a whole year now, I don't know if they have a plan to continue. </p>
<p>I did the following wrapper, this wrapper uses Matlab-like functions to do simple linear algebra. As I am new to F# and FP, would you please give some advices to improve the wrapper and code? Thanks!</p>
<pre><code>#r @"D:\WORK\tools\dnAnalytics_windows_x86\bin\dnAnalytics.dll"
#r @"FSharp.PowerPack.dll"
open dnAnalytics.LinearAlgebra
open Microsoft.FSharp.Math
open dnAnalytics.LinearAlgebra.Decomposition
// F# matrix -> ndAnalytics DenseMatrix
let mat2dnmat (mat:matrix) =
let m = new DenseMatrix(mat.ToArray2D())
m
// ndAnalytics DenseMatrix -> F# matrix
let dnmat2mat (dnmat:DenseMatrix) =
let n = dnmat.Rows
let m = dnmat.Columns
let mat = Matrix.create n m 0.
for i=0 to n-1 do
for j=0 to m-1 do
mat.[i,j] <- dnmat.Item(i,j)
mat
// random matrix
let randmat n m =
let r = new System.Random()
let ranlist m =
[ for i in 1..m do yield r.NextDouble() ]
matrix ([1..n] |> List.map (fun x-> ranlist m))
// is square matrix
let issqr (m:matrix) =
let n, m = m.Dimensions
n = m
// is postive definite
let ispd m =
if not (issqr m) then false
else
let m1 = mat2dnmat m
let qrsolver = dnAnalytics.LinearAlgebra.Decomposition.Cholesky(m1)
qrsolver.IsPositiveDefinite()
// determinant
let det m =
let m1 = mat2dnmat m
let lusolver = dnAnalytics.LinearAlgebra.Decomposition.LU(m1)
lusolver.Determinant ()
// is full rank
let isfull m =
let m1 = mat2dnmat m
let qrsolver = dnAnalytics.LinearAlgebra.Decomposition.GramSchmidt(m1)
qrsolver.IsFullRank()
// rank
let rank m =
let m1 = mat2dnmat m
let svdsolver = dnAnalytics.LinearAlgebra.Decomposition.Svd(m1, false)
svdsolver.Rank()
// inversion by lu
let inv m =
let m1 = mat2dnmat m
let lusolver = dnAnalytics.LinearAlgebra.Decomposition.LU(m1)
lusolver.Inverse()
// lu
let lu m =
let m1 = mat2dnmat m
let lusolver = dnAnalytics.LinearAlgebra.Decomposition.LU(m1)
let l = dnmat2mat (DenseMatrix (lusolver.LowerFactor ()))
let u = dnmat2mat (DenseMatrix (lusolver.UpperFactor ()))
(l,u)
// qr
let qr m =
let m1 = mat2dnmat m
let qrsolver = dnAnalytics.LinearAlgebra.Decomposition.GramSchmidt(m1)
let q = dnmat2mat (DenseMatrix (qrsolver.Q()))
let r = dnmat2mat (DenseMatrix (qrsolver.R()))
(q, r)
// svd
let svd m =
let m1 = mat2dnmat m
let svdsolver = dnAnalytics.LinearAlgebra.Decomposition.Svd(m1, true)
let u = dnmat2mat (DenseMatrix (svdsolver.U()))
let w = dnmat2mat (DenseMatrix (svdsolver.W()))
let vt = dnmat2mat (DenseMatrix (svdsolver.VT()))
(u, w, vt.Transpose)
</code></pre>
<p>and test code</p>
<pre><code>(* todo: read matrix market format ref: http://math.nist.gov/MatrixMarket/formats.html *)
let readmat (filename:string) =
System.IO.File.ReadAllLines(filename) |> Array.map (fun x-> (x |> String.split [' '] |> List.toArray |> Array.map float))
|> matrix
let timeit f str=
let watch = new System.Diagnostics.Stopwatch()
watch.Start()
let res = f()
watch.Stop()
printfn "%s Needed %f ms" str watch.Elapsed.TotalMilliseconds
res
let test() =
let testlu() =
for i=1 to 10 do
let a,b = lu (randmat 1000 1000)
()
()
let testsvd() =
for i=1 to 10 do
let u,w,v = svd (randmat 300 300)
()
()
let testdet() =
for i=1 to 10 do
let d = det (randmat 650 650)
()
()
timeit testlu "lu"
timeit testsvd "svd"
timeit testdet "det"
</code></pre>
<p>I also compared with matlab</p>
<pre><code>t = cputime; for i=1:10, [l,u] = lu(rand(1000,1000)); end; e = cputime-t
t = cputime; for i=1:10, [u,w,vt] = svd(rand(300,300)); end; e = cputime-t
t = cputime; for i=1:10, d = det(rand(650,650)); end; e = cputime-t
</code></pre>
<p>The timings (Duo Core 2.0GH, 2GB memory, Matlab 2009a)</p>
<pre><code>f#:
lu Needed 8875.941700 ms
svd Needed 14469.102900 ms
det Needed 2820.304600 ms
matlab:
lu 3.7752
svd 5.7408
det 1.2636
</code></pre>
<p>matlab is about two times faster. This is reasonable, as a native <a href="http://www.r-project.org" rel="nofollow">R</a> also has <a href="http://mlg.eng.cam.ac.uk/dave/rmbenchmark.php" rel="nofollow">similar results</a>. </p>
http://stackoverflow.com/questions/1900962/void-in-constrast-with-unit3Void in constrast with UnitAggelos Mpimpoudis2009-12-14T13:35:48Z2009-12-15T12:43:53Z
<p>I would like to understand which is the difference between these two programming concepts. The first represents the absence of data type and at the latter the type exists but there is no information. Additionally, I recognize that Unit comes from functional programming theoretical foundation but I still cannot understand what is the usability of the unit primitive (e.g., in an F# program).</p>
http://stackoverflow.com/questions/1903341/is-it-a-rule-that-unapply-will-always-return-an-option1Is it a rule that unapply will always return an Option?Geo2009-12-14T20:36:32Z2009-12-14T22:11:50Z
<p>I tried to create an <code>unapply</code> method to use in pattern matching, and I tried to make it return something different than <code>Option</code>, however, Eclipse shows that as an error. Is it a rule that <code>unapply</code> must return an <code>Option[T]</code> ?</p>
<p>EDIT: here's the code I'm trying to use. I switched the code from the previous section so that <code>unapply</code> returns a Boolean</p>
<pre><code>import java.util.regex._
object NumberMatcher {
def apply(x:String):Boolean = {
val pat = Pattern.compile("\\d+")
val matcher = pat.matcher(x)
return matcher.find
}
def unapply(x:String):Boolean = {
val pat = Pattern.compile("\\d+")
val matcher = pat.matcher(x)
return matcher.find
}
}
object x {
def main(args : Array[String]) : Unit = {
val strings = List("geo12","neo493","leo")
for(val str <- strings) {
str match {
case NumberMatcher(group) => println(group)
case _ => println ("no")
}
}
}
}
</code></pre>
<p>Eclipse says <code>wrong number of arguments for object NumberMatcher</code>. Why is that?</p>
http://stackoverflow.com/questions/985188/loop-in-scheme3Loop in schemefireball0032009-06-12T05:49:29Z2009-12-14T22:10:09Z
<p>Hi,
How can I implement loop in plt-scheme like in java-</p>
<pre><code>for(int i=0;i<10;){
for(int j=0;j<3;){
System.out.println(""+j);
j++;
}
System.out.println(""+i);
i++;
}
</code></pre>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1903126/why-is-this-option-transformed-to-a-string-scala2Why is this Option transformed to a String? [Scala]Geo2009-12-14T19:59:57Z2009-12-14T20:14:17Z
<p>I'm still a Scala noob, and this confuses me:</p>
<pre><code>import java.util.regex._
object NumberMatcher {
def apply(x:String):Boolean = {
val pat = Pattern.compile("\\d+")
val matcher = pat.matcher(x)
return matcher.find
}
def unapply(x:String):Option[String] = {
val pat = Pattern.compile("\\d+")
val matcher = pat.matcher(x)
if(matcher.find) {
return Some(matcher.group())
}
None
}
}
object x {
def main(args : Array[String]) : Unit = {
val strings = List("geo12","neo493","leo")
for(val string <- strings) {
string match {
case NumberMatcher(group) => println(group)
case _ => println ("no")
}
}
}
}
</code></pre>
<p>I wanted to add pattern matching for strings containing digits ( so I can learn more about pattern matching ), and in <code>unapply</code> I decided to return a <code>Option[String]</code>. However, in the println in the NumberMatcher case, <code>group</code> is seen as a String and not as an <code>Option</code>. Can you shed some light? The output produced when this is ran is:</p>
<p><code>12,493,no</code></p>
http://stackoverflow.com/questions/1885019/how-do-i-write-all-but-one-function-in-scheme-lisp1How do I write all-but-one function in Scheme/LISP?kunjaan2009-12-11T00:12:57Z2009-12-14T18:53:57Z
<p>Can you guys think of the shortest and the most idiomatic solution to all-but-one function?</p>
<pre><code>;; all-but-one
;; checks if all but one element in a list holds a certain property
;; (all-but-one even? (list 1 2 4)) -> true
;; (all-but-one even? '(1)) -> true
;; (all-but-one even? '(2 4)) -> false
</code></pre>
<p>Edit: all but EXACTLY one.</p>
http://stackoverflow.com/questions/329221/medium-size-clojure-sample-application12Medium-size Clojure sample application?Frederic Daoud2008-11-30T19:34:44Z2009-12-14T16:48:26Z
<p>Is there a medium-sized Clojure sample application that could be used as a "best-practices" example, and a good way to see what such an application would look like in terms of code and code organization? A web application would be particularly interesting to me, but most important is that the program do something commonly useful (blog, bug-tracking, CMS, for example), and not something mathematical that I've never ever had to implement in the real world (solving the N-queens problem, simulating Life, generate Fibonacci sequences, and such usual fare of function programming languages).</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1892324/why-program-functionally-in-python5Why program functionally in Python?paulhildebrandt2009-12-12T04:46:23Z2009-12-14T13:43:42Z
<p>At work we used to program our Python in a pretty standard OO way. Lately, a couple guys got on the functional bandwagon. And their code now contains lots more lambdas, maps and reduces. I understand that functional languages are good for concurrency but does programming Python functionally really help with concurrency? I am just trying to understand what I get if I start using more of Python's functional features.</p>
http://stackoverflow.com/questions/1896170/coding-practice-for-f8Coding Practice for F#Russell2009-12-13T10:59:15Z2009-12-13T17:57:13Z
<p>I have been dabbling with F# in Visual Studio 2010. I am a developer with more code/architecture design experience in object oriented languages such as C# and Java. </p>
<p>To expand my skillset and help make better decisions I am trying different languages to do different things. In particular get the hang of coding "correctly" using functional languages (in this case F#).</p>
<p>A simple example is generating some XML, then adding some fiters to eliminate some elements.</p>
<p>Here is my code:</p>
<pre><code>open System
open System.Xml.Linq
let ppl:(string * string) list = [
("1", "Jerry");
("2", "Max");
("3", "Andrew");
]
/// Generates a Person XML Element, given a tuple.
let createPerson (id:string, name:string) = new XElement(XName.Get("Person"),
new XAttribute(XName.Get("ID"), id),
new XElement(XName.Get("Name"), name)
)
/// Filter People by having odd ID's
let oddFilter = fun (id:string, name:string) -> (System.Int32.Parse(id) % 2).Equals(1)
/// Open filter which will return all people
let allFilter = fun (id:string, name:string) -> true
/// Generates a People XML Element.
let createPeople filter = new XElement(XName.Get("People"),
ppl |> List.filter(filter) |> List.map createPerson
)
/// First XML Object
let XmlA = createPeople oddFilter
/// Second XML Object
let XmlB = createPeople allFilter
printf "%A\n\n%A" XmlA XmlB
/// Waits for a keypress
let pauseKey = fun () -> System.Console.ReadKey() |> ignore
pauseKey()
</code></pre>
<p>My questions are: What things have I done well in this scenario? What things could be done better? </p>
<p>I am really looking forward to some ideas and I am quite excited about becoming familiar with functional paradigms too! :)</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/870919/why-are-haskell-algebraic-data-types-closed11Why are Haskell algebraic data types "closed"?Zifre2009-05-15T21:17:04Z2009-12-13T01:53:26Z
<p>Correct me if I'm wrong, but it seems like algebraic data types in Haskell are useful in many of the cases where you would use classes and inheritance in OO languages. But there is a big difference: once an algebraic data type is declared, it can not be extended elsewhere. It is "closed". In OO, you can extend already defined classes. For example:</p>
<pre><code>data Maybe a = Nothing | Just a
</code></pre>
<p>There is no way that I can somehow add another option to this type later on without modifying this declaration. So what are the benefits of this system? It seems like the OO way would be much more extensible.</p>
http://stackoverflow.com/questions/1894636/do-some-functional-programming-constructs-reduce-debuggability1Do some Functional programming constructs reduce Debuggability?ajay2009-12-12T20:40:54Z2009-12-12T21:31:24Z
<p>I've heard that the following features reduce debuggability (because they are anonymous and debuggers cannot trace it well)</p>
<ol>
<li>Anonymous Classes</li>
<li>Inner Classes</li>
<li>Closures Blocks / Lambda functions</li>
</ol>
<p>Is this true?</p>
http://stackoverflow.com/questions/1888451/list-comprehension-in-f3list comprehension in F#Yin Zhu2009-12-11T14:35:18Z2009-12-12T11:00:02Z
<p>I am trying to do some list comprehension in F#. And I found <a href="http://en.csharp-online.net/FSharp%5FFunctional%5FProgramming%E2%80%94List%5FComprehensions" rel="nofollow">this</a>. </p>
<pre><code>let evens n =
{ for x in 1 .. n when x % 2 = 0 -> x }
print_any (evens 10)
let squarePoints n =
{ for x in 1 .. n
for y in 1 .. n -> x,y }
print_any (squarePoints 3)
</code></pre>
<p>The first still works ok, but the second is outdated. The latest (1.9.7.8) F# compiler does not support this style.</p>
<p>After some search I found this works</p>
<pre><code>let vec1 = [1;2;3]
let vec2 = [4;5;6]
let products = [for x in vec1 do for y in vec2 do yield x*y]
</code></pre>
<p>Can someone point why the syntax changed? Thanks. </p>
http://stackoverflow.com/questions/998552/what-are-some-problems-best-worst-solved-by-functional-programming20What are some problems best/worst solved by functional programming?Carson Myers2009-06-15T21:43:06Z2009-12-12T05:38:04Z
<p>I've often heard that functional programming solves a lot of problems that are difficult in procedural/imperative programming. But I've also heard that it isn't great at some other problems that procedural programming is just naturally great at.</p>
<p>Before I crack open my book on Haskell and dive into functional programming, I'd like at least a basic idea of what I can really use it for (outside the examples in the book). So, what are those things that functional programming excels at? What are the problems that it is not well suited for?</p>
<h2>Update</h2>
<p>I've got some good answers about this so far. I can't wait to start learning Haskell now--I just have to wait until I master C :)</p>
<p>Reasons why functional programming is great:</p>
<ul>
<li>Very concise and succinct -- it can express complex ideas in short, unobfuscated statements.</li>
<li>Is easier to verify than imperative languages -- good where safety in a system is critical.</li>
<li>Purity of functions and immutability of data makes concurrent programming more plausible.</li>
<li>Well suited for scripting and writing compilers (I would appreciate to know why though).</li>
<li>Math related problems are solved simply and beautifully.</li>
</ul>
<p>Areas where functional programming struggles:</p>
<ul>
<li><em>Debatable</em>: web applications (though I guess this would depend on the application).</li>
<li>Desktop applications (although it depends on the language probably, F# would be good at this wouldn't it?).</li>
<li>Anything where performance is critical, such as game engines.</li>
<li>Anything involving lots of program state.</li>
</ul>
http://stackoverflow.com/questions/1888702/are-there-problems-that-cannot-be-written-using-tail-recursion6Are there problems that cannot be written using tail recursion?ctford2009-12-11T15:13:00Z2009-12-12T01:22:00Z
<p>Tail recursion is an important performance optimisation stragegy in functional languages because it allows recursive calls to consume constant stack (rather than O(n)).</p>
<p>Are there any problems that simply cannot be written in a tail-recursive style, or is it always possible to convert a naively-recursive function into a tail-recursive one?</p>
<p>If so, one day might functional compilers and interpreters be intelligent enough to perform the conversion automatically?</p>
http://stackoverflow.com/questions/1773896/when-choosing-a-functional-programming-language-for-use-with-llvm-what-are-the-t5When choosing a functional programming language for use with LLVM, what are the trade-offs?james woodyatt2009-11-20T23:40:43Z2009-12-11T21:34:44Z
<p>Let's assume for the moment that C++ is not a functional programming language. If you want to write a compiler using LLVM for the back-end, and you want to use a functional programming language and its bindings to LLVM to do your work, you have two choices as far as I know: Objective Caml and Haskell. If there are others, then I'd like to know about those too.</p>
<p>I'm not asking for subjective opinions, so please don't give this the <code>subjective</code> tag. I want to make up my own mind about this, but I'm not sure I know what are all the trade-offs. So, StackOverflow to the rescue. What are the trade-offs?</p>
http://stackoverflow.com/questions/1882334/in-functional-programming-is-it-considered-a-bad-practice-to-have-incomplete-pat7In Functional Programming, is it considered a bad practice to have incomplete pattern matchingsDario2009-12-10T16:49:18Z2009-12-11T19:42:32Z
<p>Is it generally considered a bad practice to use non-exhaustive pattern machings in functional languages like Haskell or F#, which means that the cases specified don't cover all possible input cases?</p>
<p>In particular, should I allow code to fail with a <code>MatchFailureException</code> etc. or should I always cover all cases and explicitly throw an error if necessary?</p>
<p>Example:</p>
<pre><code>let head (x::xs) = x
</code></pre>
<p>Or</p>
<pre><code>let head list =
match list with
| x::xs -> x
| _ -> failwith "Applying head to an empty list"
</code></pre>
<p>F# (unlike Haskell) gives a warning for the first code, since the <code>[]</code>-case is not covered, but can I ignore it without breaking functional style conventions for the sake of succinctness? A MatchFailure does state the problem quite well after all ...</p>
http://stackoverflow.com/questions/925365/what-is-a-thunk-as-used-in-scheme-or-in-general4What is a 'thunk', as used in Scheme or in general?Amit 2009-05-29T10:35:25Z2009-12-11T11:45:24Z
<p>Hi all,</p>
<p>I come across the word 'thunk' at a lot of places in code and documentation related to Scheme, and similar territories. I am guessing that it is a generic name for a procedure, which has a single formal argument. Is that correct? If yes, is there more to it? If no, please?</p>
<p>For eg. in <a href="http://srfi.schemers.org/srfi-18/srfi-18.html" rel="nofollow">SRFI 18</a>, in the 'Procedures' section.</p>
http://stackoverflow.com/questions/1879664/a-list-processing-problem-in-f0A List processing problem in F#Yin Zhu2009-12-10T09:03:43Z2009-12-11T00:30:12Z
<p>I am trying to do <a href="http://projecteuler.net/index.php?section=problems&id=12" rel="nofollow">problem 12</a> in Project Euler. </p>
<p>numDivisor64 is to calculate number of divisors. </p>
<p>I wrote this F# code:</p>
<pre><code>let problem12 =
{1L..300000L} |> Seq.map (fun x->x*(x+1L)/2L) |> Seq.map numDivisor64 |> Seq.filter (fun x->x>500L)
</code></pre>
<p>The problem asks to find the number rather than its # of divisors. Besides writing this in a less compact way using loops or recursion, any beautiful method?</p>
<p>Another problem, I occasionally find that I need to convert a 32-bit int version of code to a 64-bit one by adding 'L' to all the numbers. Is there a way to avoid this? Anything like c++ template?</p>
<p>I first wrote</p>
<pre><code>let numDivisor n =
let rec countd n d =
if n%d=0 then
let n2, cnt = countd (n/d) d
n2, cnt+1
else
n, 0
let rec collect n d =
if n < d then 1
elif n%d=0 then
let n2, cnt = countd n d
(cnt+1) * (collect n2 d)
else
collect n (d+1)
collect n 2
</code></pre>
<p>Later I found I need bigger integers:</p>
<pre><code>let numDivisor64 n =
let rec countd n d =
if n%d=0L then
let n2, cnt = countd (n/d) d
n2, cnt+1L
else
n, 0L
let rec collect n d =
if n < d then 1L
elif n%d=0L then
let n2, cnt = countd n d
(cnt+1L) * (collect n2 d)
else
collect n (d+1L)
collect n 2L
</code></pre>