Numeric | String | Return Value |
== |
eq | True if $a is equal $b |
!= |
ne | True if $a is not equal $b |
< |
lt | True if $a is less than $b |
> |
gt | True if $a is greater than $b |
<= |
le | True if $a is not greater than $b |
<=> |
cmp | 0 if equal, 1 if $a is greater, -1 if $b is greater |