1
0
Fork 0

updated documentation

This commit is contained in:
Jan Steemann 2014-11-05 17:09:10 +01:00
parent f33779514e
commit 01da2b3a84
1 changed files with 3 additions and 1 deletions

View File

@ -23,11 +23,13 @@ These operators accept any data types for the first and second operands.
Each of the comparison operators returns a boolean value if the comparison can
be evaluated and returns *true* if the comparison evaluates to true, and *false*
otherwise.
otherwise. Please note that the comparsion operators will not perform any
implicit type casts if the compared operands have different types.
Some examples for comparison operations in AQL:
```
0 == null // false
1 > 0 // true
true != null // true
45 <= "yikes!" // true