Operation | Meaning | < | strictly less than | <= | less than or equal | > | strictly greater than | >= | greater than or equal | == | equal | != | not equal Note: != can also be written <> , but this is an obsolete usage kept for backwards compatibility only. New code should always use != . | is | object identity | is not | negated object identity | (1) |
|