From 5aea0d024f81a469c360ffe7bc01ff0ee5da842f Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Sat, 3 Oct 2020 15:07:48 +0300 Subject: [PATCH] docs: add bitwise not (~) to the list of int operators --- doc/docs.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/docs.md b/doc/docs.md index a2b3f4d449..236f735078 100644 --- a/doc/docs.md +++ b/doc/docs.md @@ -2863,10 +2863,16 @@ This lists operators for [primitive types](#primitive-types) only. / quotient integers, floats % remainder integers +~ bitwise NOT integers & bitwise AND integers | bitwise OR integers ^ bitwise XOR integers +! logical NOT bools +&& logical AND bools +|| logical OR bools +!= logical XOR bools + << left shift integer << unsigned integer >> right shift integer >> unsigned integer