python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Bit flags operation
I am going through some format spec and I am encountering the following:
if (flags & 1) {
...
}
Now, according to the same documentation flags is:
so the flags is 3 bytes. The operation flags ...

Tarta
Votes: 0
Answers: 1
Check if N(large) bits are set
I want to check if any of the 1024 bits (128 bytes) are set. If all are clear, then I want to do something. Is it possible to do this quickly, i.e one instruction or do I have to loop through my bitma...
beans
Votes: 0
Answers: 2
Generating CSS modules for React components in Bit
We started sharing a number of React components in our SPA as Bit.dev components and ran into an issue: can't use our components on Bit's dashboard due to CSS-modules as Bit's build process does not c...
Alexf2
Votes: 0
Answers: 1
Fast way of checking for alignment of in a 6x6 bitboard
I am trying to find a quick and fast way to check for alignment of 5 bits in a 6x6 board in all directions (diagonal, horizontal, vertical). The board is represented as a bitboard as they are very fas...
JackRubiralta
Votes: 0
Answers: 1