\brief number of bits in the bitset at the top of the stack
| 61 | |
| 62 | /// \brief number of bits in the bitset at the top of the stack |
| 63 | int TopSize() const { |
| 64 | if (offsets_.size() == 0) return 0; |
| 65 | return bit_count() - offsets_.back(); |
| 66 | } |
| 67 | |
| 68 | /// \brief pop a bitset off the stack |
| 69 | void Pop() { |