Determines if the left object is greater or equal to the right object.
>=
op_GreaterThanOrEqual(other)
table = {
a = 10,
op_GreaterThanOrEqual = function(other)
{
return table.a >= other.a
}
}
o = {
a = 9,
op_GreaterThanOrEqual = function(other)
{
return o.a >= other.a
}
}
b1 = table >= other //Returns true
b2 = other >= table //Returns false