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

Does Ruby have a plain-English keyword for exclusive or, like they have "and" and "or"? If not, is this because exclusive or doesn't allow evaluation short-cutting?

share|improve this question

5 Answers

up vote 9 down vote accepted

No it doesn't, you can only use ^.

Don't know why there isn't particularly, may just be because it isn't as commonly used.

share|improve this answer
^ runs into problems with truthy values. I defined my own function: – John Aug 8 '12 at 13:45
I have just been hit by this. I am using ruby-prof to improve an algorithm, and I thought that simplifying some condition with a XOR would make it faster. But it's the other way around. – codecaster Nov 26 '12 at 0:43

Firstly, I don't think shortcircuiting can sensibly apply to XOR: whatever the value of the first operand, the second needs to be examined.

Secondly, and, &&, or and || use shortcircuiting in all cases; the only difference between the "word" and "symbol" versions is precedence. I believe that and and or are present to provide the same function as perl has in lines like

process_without_error or die

I think the reason for not having a xor named function is probably that there's no point in a low-precedence operator in this case and that it's already a confusing enough situation!

share|improve this answer
I think that "no point in low precedence xor function" is not right. In Perl I was used to check two exclusive CGI parameters with something like param1 xor param2. Shame I need to do this in a more complicated way in Ruby. – geronime Aug 23 '11 at 20:59

Try ^

true  ^ false #=> true
true  ^ true  #=> false
false ^ false #=> false

No plain english equivalent operator though.

share|improve this answer

I ran into an issue because the '^' operator acts bitwise on numbers,

true ^ 1
=> false

1 ^ true
TypeError: can't convert true into Integer
true ^ 1

so my workaround was:

( !!a ^ !!b ) where the double-bang coerces them into booleans.

!!1 ^ !!true
=> false

!!1 ^ !!false
=> true
share|improve this answer
Interesting, but not hugely relevant to the question. – Macha Jun 29 '09 at 14:08
++ Useful. I came here looking for XOR, but know how to do the opposite, that is, coerce a bool to_i? My other operand is already an int, and I need the result to be int. – Marcos Apr 14 '12 at 21:37
@Macha +1ing because I've just come across the same issue, and there's no other questions about Ruby boolean xors that weren't about strings. – Andrew Grimm May 18 '12 at 4:13

Any implementation of xor won't allow short circuiting. Both expressions need to be evaluated no matter what.

Ruby does provide the ^ operator, but this will choke on truthy values. I've implemented a function to handle the cases where I want an xor that behaves more like and and or:

def xor(a,b)
  (a and (not b)) or ((not a) and b)
end

Unlike ^, this function can be used in situations similar to the following:

xor("hello".match(/llo/), false) # => true
xor(nil, 1239)                   # => true
xor("cupcake", false)            # => false
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.