Update BitWise Operation README.

This commit is contained in:
Oleksii Trekhleb 2018-08-10 18:22:06 +03:00
parent 7f189498cf
commit 46b13f04fd

View File

@ -112,7 +112,7 @@ x * 19 = x * 2^4 + x * 2^1 + x * 2^0
```
Now we need to remember that `x * 2^4` is equivalent of shifting `x` left
by `4` bits ()`x << 4`).
by `4` bits (`x << 4`).
> See `multiplyUnsigned` function for further details.