Return the bits that make up word Idx in our element.
| 299 | |
| 300 | // Return the bits that make up word Idx in our element. |
| 301 | BitWord word(unsigned Idx) const |
| 302 | { |
| 303 | assert(Idx < BITWORDS_PER_ELEMENT); |
| 304 | return Bits[Idx]; |
| 305 | } |
| 306 | |
| 307 | unsigned index() const |
| 308 | { |
no outgoing calls
no test coverage detected