Forward iterator that points at the element 'val' if it exists, or at end() if it doesn't exist.
| 132 | // Forward iterator that points at the element 'val' if it exists, or at |
| 133 | // end() if it doesn't exist. |
| 134 | iterator find(const IntType& val) const { |
| 135 | return contains(val) ? iterator(this, val) : end(); |
| 136 | } |
| 137 | |
| 138 | private: |
| 139 | COMPILE_ASSERT(MaxVals < 64, bitset_size_too_large); |