I was just thinking... do they really need a 32-bit int for that?? A bool or char would do it.
Top-level
I was just thinking... do they really need a 32-bit int for that?? A bool or char would do it. 4 comments
Yes, it's classic optimize-for-speed-not-size. ;) It's only a couple extra cycles to do the bitwise AND to unpack a packed bool array, but there are times where that would really count. |
@rl_dane @shaknais @nixCraft Yep, same thought: not perfect!