|
|
|
|
|
by codeflo
1812 days ago
|
|
True, but something to be aware of: If the compiler uses bitwise operations to implement %, it emits special handling of negative values (it's really more of a remainder operator than a modulus). You can avoid that either by using unsigned numbers, or & as suggested: https://godbolt.org/z/vdz59q994 |
|