mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
docs: add bitwise not (~) to the list of int operators
This commit is contained in:
parent
a6071da33b
commit
5aea0d024f
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user