Forward iterator that points to the start of the values in the bitset. Points at the first set bit, or at end() if no bits are set.
| 119 | // Forward iterator that points to the start of the values in the bitset. |
| 120 | // Points at the first set bit, or at end() if no bits are set. |
| 121 | iterator begin() const { |
| 122 | iterator iter(this, -1); |
| 123 | iter.seek_forward(); |
| 124 | return iter; |
| 125 | } |
| 126 | |
| 127 | // Forward iterator that points to the end of the values in the bitset. |
| 128 | iterator end() const { |