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