Returns True if left and right are true
&=
op_SelfAnd(other)
table = {
a = true,
op_SelfAnd = function(other)
{
table.a &= other.a
return table
}
}
o = {
a = true,
op_SelfAnd = function(other)
{
o.a &= other.a
return o
}
}
table &= other //table.a == true