Method `>=()
- Method `>=
bool `>=(mixed arg1, mixed arg2, mixed ... extras)
- Description
Greater than or equal test.
Every expression with the
>=operator becomes a call to this function, i.e.a>=bis the same aspredef::`>=(a,b).- Returns
Returns
1if the test is successful,0otherwise.- Note
For total orders, e.g. integers, this is the inverse of `<().
- See also