You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
auto a = bitSlice(x);
auto b = bitSlice(x);
a[] |= b[];
Iterating through individual bits and computing the bitwise operation one-by-one kinda ruins the whole idea of storing the bools as bits that these operations would be allowed.
The text was updated successfully, but these errors were encountered:
I expected the following to be allowed:
Iterating through individual bits and computing the bitwise operation one-by-one kinda ruins the whole idea of storing the bools as bits that these operations would be allowed.
The text was updated successfully, but these errors were encountered: