Can Ruby really be used as a functional language? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T09:51:52Zhttp://stackoverflow.com/feeds/question/213312http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/213312/can-ruby-really-be-used-as-a-functional-language10Can Ruby really be used as a functional language?fooledbyprimes2008-10-17T18:31:47Z2008-10-18T01:12:20Z
<p>Can Ruby really be used as a functional language? What are some good tutorials to teach this facet of the language? Note: I really want to use and stick with Ruby as my primary language so I am not interested at this point in being converted to YAFL (yet another functional language). I am really interested in how well Ruby's functional facets perform against the standard functional language baseline. Thanks.</p>
http://stackoverflow.com/questions/213312/can-ruby-really-be-used-as-a-functional-language/213329#2133293Answer by Jonas for Can Ruby really be used as a functional language?Jonas2008-10-17T18:37:59Z2008-10-17T18:37:59Z<p>It depends what you mean by "Functional Programming". In my view, the most important thing is that functions are <a href="http://en.wikipedia.org/wiki/First-class_object" rel="nofollow">first class values</a>, and in this respect Ruby is a functional language. </p>
http://stackoverflow.com/questions/213312/can-ruby-really-be-used-as-a-functional-language/213336#21333612Answer by Daniel Spiewak for Can Ruby really be used as a functional language?Daniel Spiewak2008-10-17T18:39:50Z2008-10-17T18:39:50Z<p>Yes...sort of. Ruby lacks a reasonable construct to enforce immutability. (<code>Object#freeze</code> doesn't count) Immutability is really the cornerstone of functional languages. Further, Ruby's core libraries are highly oriented toward imperative design. Its <code>Array</code> and <code>Hash</code> classes are both mutable by nature, even <code>String</code> has methods which make non-immutable (e.g. <code>gsub!</code>). Ironically, Java is more "functional" than Ruby in this respect.</p>
<p>With that said, it is possible to do functional-like programming in Ruby. Any time you use a block/proc/lambda, you are using a feature that comes from functional programming. Likewise, collection methods like <code>map</code> and <code>zip</code> are also higher-order constructs which find their roots in languages like Lisp, ML and Haskell.</p>
<p>If you really want to do functional programming, you will want to use a language which is more geared toward that genre. Some suggestions:</p>
<ul>
<li><a href="http://clojure.org" rel="nofollow"><strong>Clojure</strong></a> - Since you phrased the question using Ruby, I'm guessing you're of the dynamically typed persuasion. Clojure is like a strictly-functional Lisp that runs on the JVM.</li>
<li><a href="http://research.microsoft.com/fsharp/fsharp.aspx" rel="nofollow"><strong>F#</strong></a> - Basically OCaml on the CLR. Very nice, very clean</li>
<li><a href="http://www.scala-lang.org" rel="nofollow"><strong>Scala</strong></a> - Not a <em>strictly</em> functional language, but much better for it than Ruby</li>
<li><a href="http://www.haskell.org/" rel="nofollow"><strong>Haskell</strong></a> - Everybody's favorite!</li>
</ul>
<p>You'll notice that three of these four languages are statically typed. In fact, in the case of Scala and Haskell, these are <em>very</em> statically typed languages (much stronger type systems than, say, Java). I'm not sure why this is a trend in functional languages, but there you have it.</p>
http://stackoverflow.com/questions/213312/can-ruby-really-be-used-as-a-functional-language/213340#2133403Answer by johnstok for Can Ruby really be used as a functional language?johnstok2008-10-17T18:40:49Z2008-10-17T18:40:49Z<p>It has a fairly comprehensive set of list comprehensions - see <a href="http://martinfowler.com/bliki/CollectionClosureMethod.html" rel="nofollow">Martin Fowler's article</a>. However, it's type system is not as powerful as the likes of Haskell. Also, its focus is not on immutability, as is typical for functional languages.</p>
http://stackoverflow.com/questions/213312/can-ruby-really-be-used-as-a-functional-language/213341#2133410Answer by tanner for Can Ruby really be used as a functional language?tanner2008-10-17T18:41:21Z2008-10-17T18:41:21Z<p>For most uses, yes. There is (albeit a somewhat limited) ability to do currying, first class functions, and recursion. But due to the high cost of object creation, and method dispatch, deep recursion can get you into trouble quick! </p>
<p>Ruby is plenty capable fitting into a variety of programming "molds", but it's certainly not optimal at most of them.</p>
http://stackoverflow.com/questions/213312/can-ruby-really-be-used-as-a-functional-language/213396#213396-2Answer by JDrago for Can Ruby really be used as a functional language?JDrago2008-10-17T18:51:47Z2008-10-17T22:09:38Z<p>Take a look at <a href="http://www.haskell.org/" rel="nofollow">Haskell</a>. It's a functional language that syntactically is very similar to Ruby.</p>
http://stackoverflow.com/questions/213312/can-ruby-really-be-used-as-a-functional-language/214330#2143301Answer by madlep for Can Ruby really be used as a functional language?madlep2008-10-18T01:12:20Z2008-10-18T01:12:20Z<p>You'll also run into issues fairly quickly if you're using any kind of recursive algorithm. Ruby doesn't support tail-recursion, so if you can't reliably use recursion as an iteration technique like you would as the natural way of doing things in a more functional language. Something like:</p>
<pre><code>def foo(n)
puts n
foo(n + 1)
end
foo(1)
</code></pre>
<p>Will give you</p>
<pre><code>SystemStackError: stack level too deep
from (irb):2:in `puts'
from (irb):2:in `foo'
from (irb):3:in `foo'
from (irb):5
</code></pre>
<p>After a few thousand iterations (depending on your system)</p>