| 161 | |
| 162 | template<unsigned int sz> |
| 163 | forceinline bool |
| 164 | TinyBitSet<sz>::empty(void) const { // Linear complexity... |
| 165 | for (unsigned int i=0U; i<sz; i++) |
| 166 | if (!_bits[i].none()) |
| 167 | return false; |
| 168 | return true; |
| 169 | } |
| 170 | |
| 171 | template<unsigned int sz> |
| 172 | forceinline unsigned int |