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