Update rfcs/function-bit32-countlz-countrz.md

Co-authored-by: vegorov-rbx <75688451+vegorov-rbx@users.noreply.github.com>
This commit is contained in:
Arseny Kapoulkine 2021-11-05 08:57:49 -07:00 committed by GitHub
parent 00bde780bf
commit 1148a29c25
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,7 +12,7 @@ All CPUs have instructions to determine the position of first/last set bit in an
- Scanning set bits in an integer, which allows efficient traversal of compact representation of bitmaps
- Allocating bits out of a bitmap quickly
Today it's possible to approximate `countlz` using `floor` and `log` but this approximation is relatively slow; approximating `ccountrz` is difficult without iterating through each bit.
Today it's possible to approximate `countlz` using `floor` and `log` but this approximation is relatively slow; approximating `countrz` is difficult without iterating through each bit.
## Design