| 797 | } |
| 798 | |
| 799 | unsigned count() const { |
| 800 | unsigned BitCount = 0; |
| 801 | for (ElementListConstIter Iter = Elements.begin(); |
| 802 | Iter != Elements.end(); |
| 803 | ++Iter) |
| 804 | BitCount += Iter->count(); |
| 805 | |
| 806 | return BitCount; |
| 807 | } |
| 808 | |
| 809 | iterator begin() const { |
| 810 | return iterator(this); |