C++ Bit Manipulation Set all bits

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Insert
> Step 2: And Like the video. BONUS: You can also share it!

Example

C-style bit-manipulation

x = -1; // -1 == 1111 1111 ... 1111b

(See here for an explanation of why this works and is actually the best approach.)

Using std::bitset

std::bitset<10> x;
x.set(); // Sets all bits to '1'


Got any C++ Question?