Why Does Ruby Only Permit Certain Operator Overloading - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T04:50:16Zhttp://stackoverflow.com/feeds/question/92862http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/92862/why-does-ruby-only-permit-certain-operator-overloading1Why Does Ruby Only Permit Certain Operator OverloadingThanatos2008-09-18T14:10:09Z2008-09-20T20:53:26Z
<p>In Ruby, like in many other OO programming languages, operators are overloadable. However, only certain character operators can be overloaded.</p>
<p>This list may be incomplete but, here are some of the operators that cannot be overloaded: </p>
<pre><code>!, not, &&, and, ||, or
</code></pre>
http://stackoverflow.com/questions/92862/why-does-ruby-only-permit-certain-operator-overloading/92905#929056Answer by Farrel for Why Does Ruby Only Permit Certain Operator OverloadingFarrel2008-09-18T14:14:12Z2008-09-18T14:14:12Z<p>Methods are overloadable, those are part of the language syntax.</p>
http://stackoverflow.com/questions/92862/why-does-ruby-only-permit-certain-operator-overloading/92922#9292212Answer by Joe Van Dyk for Why Does Ruby Only Permit Certain Operator OverloadingJoe Van Dyk2008-09-18T14:16:01Z2008-09-18T14:16:01Z<p><a href="http://ola-bini.blogspot.com/2007/10/operator-overloading-in-ruby.html?showComment=1191704640000#c7207705878073349200" rel="nofollow">"The && and || operators are not overloadable, mainly because they provide "short circuit" evaluation that cannot be reproduced with pure method calls."</a></p>
<p>-- Jim Weirich</p>
http://stackoverflow.com/questions/92862/why-does-ruby-only-permit-certain-operator-overloading/92931#929316Answer by Jordi Bunster for Why Does Ruby Only Permit Certain Operator OverloadingJordi Bunster2008-09-18T14:16:58Z2008-09-18T14:16:58Z<p>Yep. Operators are not overloadable. Only methods.</p>
<p>Some operators are not really. They're sugar for methods. So <code>5 + 5</code> is really <code>5.+(5)</code>, and <code>foo[bar] = baz</code> is really <code>foo.[]=(bar, baz)</code>.</p>
http://stackoverflow.com/questions/92862/why-does-ruby-only-permit-certain-operator-overloading/98232#982321Answer by Ryan Bigg for Why Does Ruby Only Permit Certain Operator OverloadingRyan Bigg2008-09-19T00:11:42Z2008-09-19T00:11:42Z<p>And let's not forget about <code><<</code> for example:</p>
<pre><code>string = "test"
string << "ing"
</code></pre>
<p>is the same as calling:</p>
<pre><code>string.<<("ing")
</code></pre>
http://stackoverflow.com/questions/92862/why-does-ruby-only-permit-certain-operator-overloading/109347#1093470Answer by Jörg W Mittag for Why Does Ruby Only Permit Certain Operator OverloadingJörg W Mittag2008-09-20T20:53:26Z2008-09-20T20:53:26Z<p>In Ruby 1.9, the <code>!</code> operator is actually also a method and can be overriden. This only leaves <code>&&</code> and <code>||</code> and their low-precedence counterparts <code>and</code> and <code>or</code>.</p>
<p>There's also some other "combined operators" that cannot be overriden, e.g. <code>a != b</code> is actually <code>!(a == b)</code> and <code>a += b</code> is actually <code>a = a+b</code>.</p>