What is this functional "pattern" called? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T07:35:45Z http://stackoverflow.com/feeds/question/442772 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/442772/what-is-this-functional-pattern-called 5 What is this functional "pattern" called? Robert Gould 2009-01-14T12:28:36Z 2009-01-14T21:22:51Z <p>I was fooling around with some functional programming when I came across the need for this function, however I don't know what this sort of thing is called in standard nomenclature. Anyone recognizes it?</p> <pre><code>function WhatAmIDoing(args...) return function() return args end end </code></pre> <p><strong>Edit:</strong> generalized the function, it takes a variable amount of arguments ( or perhaps an implicit list) and returns a function that when invoked returns all the args, something like a curry or pickle, but it doesn't seem to be either.</p> http://stackoverflow.com/questions/442772/what-is-this-functional-pattern-called/442788#442788 -2 Answer by Ironicnet for What is this functional "pattern" called? Ironicnet 2009-01-14T12:33:10Z 2009-01-14T12:33:10Z <p>A delegate?</p> <p>Basically you are returning a function?? or the output of a function?</p> <p>Didn't understand, sorry...</p> http://stackoverflow.com/questions/442772/what-is-this-functional-pattern-called/442795#442795 5 Answer by Remo.D for What is this functional "pattern" called? Remo.D 2009-01-14T12:34:53Z 2009-01-14T13:27:02Z <p>I would say that XXXX returns a <em>closure</em> of the unnamed function bound on the values of x,y and z.</p> <p>This <a href="http://en.wikipedia.org/wiki/Closure_(computer_science)" rel="nofollow">wikipedia</a> article may shed some light</p> http://stackoverflow.com/questions/442772/what-is-this-functional-pattern-called/442816#442816 5 Answer by unbeknown for What is this functional "pattern" called? unbeknown 2009-01-14T12:43:49Z 2009-01-14T12:43:49Z <p>In functional programming a function that takes another function as an argument or returns another function is called a <a href="http://en.wikipedia.org/wiki/Higher_order_function" rel="nofollow">higher-order function</a>.</p> http://stackoverflow.com/questions/442772/what-is-this-functional-pattern-called/442952#442952 8 Answer by Jonathan Tran for What is this functional "pattern" called? Jonathan Tran 2009-01-14T13:33:53Z 2009-01-14T21:22:51Z <p>WhatAmIDoing is a <a href="http://en.wikipedia.org/wiki/Higher_order_function" rel="nofollow">higher-order function</a> because it is a function that returns another function.</p> <p>The thing that it returns is a <a href="http://en.wikipedia.org/wiki/Thunk" rel="nofollow">thunk</a> &mdash; a closure created for delayed computation of the actual value. Usually thunks are created to lazily evaluate an expression (and possibly memoize it), but in other cases, a function is simply needed in place of a bare value, as in the case of "<code>constantly 5</code>", which in some languages returns a function that always returns 5.</p> <p>The latter might apply in the example given, because assuming the language evaluates in applicative-order (i.e. evaluates arguments before calling a function), the function serves no other purpose than to turn the values into a function that returns them.</p> <p>WhatAmIDoing is really an implementation of the "constantly" function I was describing. But in general, you don't have to return just <code>args</code> in the inner function. You could return "<code>ackermann(args)</code>", which could take a long time, as in...</p> <pre><code>function WhatAmIDoing2(args...) return function() return ackermann(args) end end </code></pre> <p>But WhatAmIDoing2 would return immediately because evaluation of the ackermann function would be suspended in a <a href="http://en.wikipedia.org/wiki/Closure_(computer_science)" rel="nofollow">closure</a>. (Yes, even in a call-by-value language.)</p> http://stackoverflow.com/questions/442772/what-is-this-functional-pattern-called/442986#442986 2 Answer by unbeknown for What is this functional "pattern" called? unbeknown 2009-01-14T13:43:32Z 2009-01-14T14:11:30Z <p><a href="http://en.wikipedia.org/wiki/Currying" rel="nofollow">Currying</a> is about transforming a function to a chain of functions, each taking only one parameter and returning another such function. So, this example has no relation to currying.</p> <p>Pickling is a term ususally used to denote some kind of serialization. Maybe for storing a object built from multiple values.</p> <p>If the aspect interesting to you is that the returned function can access the arguments of the XXXX function, then I would go with Remo.D.</p> http://stackoverflow.com/questions/442772/what-is-this-functional-pattern-called/443093#443093 1 Answer by Fabian Steeg for What is this functional "pattern" called? Fabian Steeg 2009-01-14T14:19:36Z 2009-01-14T14:19:36Z <p>As others have said, it's a <a href="http://en.wikipedia.org/wiki/Higher-order_function" rel="nofollow">higher-order function</a>. As you have "pattern" in your question, I thought I'd add that this feature of functional languages is often modelled using the <a href="http://en.wikipedia.org/wiki/Strategy_pattern" rel="nofollow">strategy pattern</a> in languages without higher-order functions.</p>