I want to find the index of the first set bit in a bitset. Most modern CPU's can make use of the FFS instruction to speed this up on normal sized numerical types. Can I make use of this instruction when I want to find the first set bit in a C++ std::bitset?