XML information pipe
Ihre Spezialisten für XML
!= | > | >> | >= | < | << | <= | (::) | * | + | | − | . | .. | ⁄⁄ | = | @ | [] | and | cast as | castabel as | div | eq | every..in..satisfies | except | for..in..return ge | gt | idiv | if..then..else | instance of | is | le | lt | mod | ne | or | some..in..satisfies | to | treat as | | union | | |
!=
Not Equal. General comparisons are existentially quantified comparisons that may be applied to operand sequences of any length. When evaluating a general comparison in which either operand is a sequence of items, an implementation may return true as soon as it finds an item in the first operand and an item in the second operand that satisifies the condition. != is not inverse of =.
| Input: | (1, 2) != (2, 3) |
| Output: | true |
| Input: | (2, 3) != (3, 4) |
| Output: | true |
| Input: | (1, 2) != (3, 4) |
| Output: | true |