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.
**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:19alwaysandall 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