Forward iterator that points to the end of the values in the bitset.
| 126 | |
| 127 | // Forward iterator that points to the end of the values in the bitset. |
| 128 | iterator end() const { |
| 129 | return iterator(this, MaxVals); |
| 130 | } |
| 131 | |
| 132 | // Forward iterator that points at the element 'val' if it exists, or at |
| 133 | // end() if it doesn't exist. |