Extracted from Pike v7.6 release 61 at 2005-12-30.
pike.ida.liu.se
[Top]

Method `>=()


Method `>=

int(0..1) `>=(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>=b is the same as predef::`>=(a,b).

Returns

Returns 1 if the arguments are not strictly increasing, and 0 (zero) otherwise.

This is the inverse of `<() .

See also

`<=() , `>() , `<()