Anyone have a decent example, preferably practical/useful, they could post demonstrating the concept?
|
|
|
|
|
|
|
Closures can be used for any number of reasons, one of which is to reduce the sope of helper functions or values. So rather than polluting the module/namespace with random crap, you can scope them to just where they are necessary.
Edit: Here's another example that captures values and brings them into an inner scope without being passed as parameters.
In the example 'myPassword' is used in all the inner functions, but it wasn't passed as a parameter. |
|||
|
|
|
|
Chris Smith's first example offers a helpful glimpse of identifier scope in F#. However, it doesn't take advantage of the bound variables available to the nested functions. In the following variation, minLength is available to the inner function because it is a closure.
This is a trivial use of a closure because you could accomplish the same thing by currying in F#. |
|||
|
|
|
|
ESV - as I understand it (which is also limited by an OO perspective) the closure has to do with limiting your functions (like isLongEnough) to within the scope of the method that uses them. This effectively closes (hence the term closure) these functions off from the rest of you application's code. I think I am understanding it right, if not hopefully I'll get set straight as well ;) |
||
|
|
|
|
@Alex -- that's just scope of the functions. closures build on that though. @ESV -- the
We are returning an environment(dx) and the anonymous function. Now, you don't necessarily have to return a function, like Chris's example. But it always has to do with using more widely scoped (or bound) variables -- the environment -- within a local context.
So, this is a closure, though I forced it a bit, but for the sake of defining them it's a decent framework. |
|||
|
|
|
|
@ESV, the closures are the three |
||
|
|
|
|
In the text Functional Programming there is this definition:
This definition is probably not complete but is easy to comprehend for someone from imperative/objective language. |
||
|
|
|
|
Closures are useful for caching and memoization. For example:
Notice how the More generally, closures are a useful to keep some private state. Hence, you can even recreate cons cells purely with functions.
Well, here the cons cells are immutable. But you could imagine having mutable state too. Let's make a little counter:
It is known that closures are a poor man's objects, because objects are a poor man's closures :) You can simulate one with the other. |
||
|
|
|
|
I've struggled with this too - seeing the word "closure" thrown around by the F# experts. It sounds like "scope" (and nested scope) that are familiar, but it actually has little to do with that, and is only relevant in code that is passing around functions as values outside there original scope. @Robert has a good quote...
The best example I've seen...
This only works because count is a "ref" variable (ie. on the heap), and because Counter returns a function (rather than an integer) Next is the wrong way - using the stack instead of the heap...
This produces a very helpful error message, which tells us a lot about closures..
(kudos to the author of that message!) Syme, et al, "Expert F#" says, on usage of closures...
|
|||
|
|
