Add documentation for || and &&

fixes #6592
This commit is contained in:
Gunnar Beutner 2014-06-27 12:21:11 +02:00
parent b49636883f
commit db8f4abc1b
1 changed files with 2 additions and 0 deletions

View File

@ -190,6 +190,8 @@ Operator | Examples (Result) | Description
/ | 5m / 5 (60) | Divides two numbers
& | 7 & 3 (3) | Binary AND
| | 2 | 3 (3) | Binary OR
&& | true && false (false) | Logical AND
|| | true || false (true) | Logical OR
< | 3 < 5 (true) | Less than
> | 3 > 5 (false) | Greater than
<= | 3 <= 3 (true) | Less than or equal