G
Guy.Tristram
Is there any good reason operator< is not defined for std::bitset? It
seems to me that:
1 - it would be useful.
2 - it is easy to implement inside the class template.
3 - it is impossible to implement efficiently (for bitsets too large
for to_ulong) outside of the class.
For now I will use boost::dynamic_bitset, which does implement it.
Guy
seems to me that:
1 - it would be useful.
2 - it is easy to implement inside the class template.
3 - it is impossible to implement efficiently (for bitsets too large
for to_ulong) outside of the class.
For now I will use boost::dynamic_bitset, which does implement it.
Guy