Returns True if either left or right are true
^
op_ExclusiveOr(other)
table = {
a = true,
op_ExclusiveOr = function(other)
{
return table.a ^ other.a
}
}
o = {
a = false,
op_ExclusiveOr = function(other)
{
return o.a ^ other.a
}
}
b1 = table ^ other //Returns true