I'm using xor in an expression binding and it's throwing an error that xor can't handle
null xor null
Shouldn't this just evaluate to false? I can wrap it in a try() to get rid of the error until those values are non-null, but this just seems like odd behavior, considering || and && can handle null just fine.