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?
|
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. |
|||||
|
|
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
I think the reason for not having a |
|||
|
|
Try
No plain english equivalent operator though. |
|||
|
|
|
I ran into an issue because the '^' operator acts bitwise on numbers,
so my workaround was:
|
|||||||
|
|
Any implementation of Ruby does provide the
Unlike
|
|||
|
|