Test if a protocol is in the set.
| 100 | } |
| 101 | /// Test if a protocol is in the set. |
| 102 | bool |
| 103 | contains(int idx) const |
| 104 | { |
| 105 | return 0 != (m_bits & this->indexToMask(idx)); |
| 106 | } |
| 107 | /// Test if all the protocols in @a that are in @a this protocol set. |
| 108 | bool |
| 109 | contains(self_type const &that) const |
nothing calls this directly
no test coverage detected