With the amount of bitset values I deal with, it would be nice to be able to write binary literals the way that some other languages like Python support. A syntax like 0b10110101 would be very expressive for bitset values.
This certainly isn't necessary, because writing in hex is easy enough, but this could potentially make code more readable.
With the amount of bitset values I deal with, it would be nice to be able to write binary literals the way that some other languages like Python support. A syntax like
0b10110101would be very expressive for bitset values.This certainly isn't necessary, because writing in hex is easy enough, but this could potentially make code more readable.