Determines if two Objects are equal.
==
op_Equality(other)
table = {
a = 10,
op_Equality = function(other)
{
return other.a == table.a
}
}
o = {
a = 10,
op_Equality = function(other)
{
return other.a == o.a
}
}
b1 = table == other //Returns true
b2 = other == table //Returns true