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