C++ – How to left/tight circular shift a bitset?

Let’s say I have a bitset<28> called left28. I’m looking to left circular shift left28. After doing some searching, I came across std::rotl (C++20) but it doesn’t seem to play nice with bitset, so I have no idea how I’m going to pull this off. >Solution : You can implement a left circular shift by… Read More C++ – How to left/tight circular shift a bitset?