Returns True if any of left or right are true
|=
op_SelfOr(other)
table = {
a = true,
op_SelfOr = function(other)
{
table.a |= other.a
return a
}
}
o = {
a = false,
op_SelfOr = function(other)
{
o.a |= other.a
return o
}
}
table |= other //table.a == true