diff options
author | Jatin Dhankhar <dhankhar.jatin@gmail.com> | 2016-06-27 19:00:07 +0530 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2016-06-27 15:30:07 +0200 |
commit | c50ff9299651ba3c856ee23cbdabeda2784b864c (patch) | |
tree | cd1bf9a6ed38dde489b781c1a27e859d37ae609c /rst.html.markdown | |
parent | 46844f8e8e9b55148910256e149f510ae43cf757 (diff) |
Added the Logical and bitwise operators section, fixes merge issue with #1817 (#2292)
* Added the Logical and bitwise operators section
* Added a note for Short Circuit evaluation
Excerpt from https://en.wikipedia.org/wiki/Short-circuit_evaluation
C++ uses minimal evaluation, or McCarthy evaluation (after John McCarthy (computer scientist)) is the semantics of some Boolean operators in some programming languages in which the second argument is executed or evaluated only if the first argument does not suffice to determine the value of the expression: when the first argument of the AND function evaluates to false, the overall value must be false; and when the first argument of the OR function evaluates to true, the overall value must be true. In some programming languages (Lisp), the usual Boolean operators are short-circuit.
Diffstat (limited to 'rst.html.markdown')
0 files changed, 0 insertions, 0 deletions