Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

^ was always supposed to mean exponentiation. But it doesnt behave that way. What does it actually mean, and are there any member functions of Int that do exponentiation (other than math.pow)?

And why was it defined that way? It gets an operator precedence lower than arithemetic operations, when all other languages give it the highest precedence.

share|improve this question
Maybe bitwise XOR. xcprod.com/titan/XCSB-DOC/binary_xor.html – phimuemue Mar 11 '12 at 18:09
8  
Relevant: exponentiation in programming languages – Gumbo Mar 11 '12 at 18:13
1  
I see ** as exponentiation more than ^, or as a function, but that's a consequence of the languages I tend towards. – Dave Newton Mar 11 '12 at 18:19
5  
Scala language specification version 2.9, section 12.2.1 it is defined as bitwise-exclusive-or. It was not "always supposed to mean exponentiation". Ref: scala-lang.org/docu/files/ScalaReference.pdf – ccoakley Mar 11 '12 at 18:19
Do you use an extreme localized version of always and all other? Java doesn't use ^, bash doesn't use it, C and C++ don't use it. Is there a language at all, which uses ^, maybe Smalltalk, JavaScript, SQL, Basic, Prolog? – user unknown Mar 12 '12 at 20:58
show 1 more comment

2 Answers

up vote 16 down vote accepted

It's bitwise exclusive or. You've probably never developed in C, C++, or Java, or... It's inherited from them. I don't know how one would define what it's "supposed" to be, but there's certainly a lot of code written with this meaning.

Int (and RichInt) don't have an exponentiation operator.

As far as precedence goes, it's in the middle of the other logical operators, which is where it belongs given its actual meaning (as opposed to exponentiation).

If you really wanted to override the meaning of "^" within a restricted scope (something I do not recommend), I think you could do so using implicit parameters, thereby getting the high precedence you want. Or, more sanely, I think you could define a "to_the" or "**" operator the same way, getting the same high precedence.

share|improve this answer

Well, "all other languages" is a very strong statement.

'^' in Scala comes from Java (where it came from the general vicinity of the C language), and means bitwise XOR. And it's used as XOR in various other languages as well, eg. in Python.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.