| 161 | } |
| 162 | |
| 163 | forceinline unsigned int |
| 164 | IntSet::width(int i) const { |
| 165 | assert(object() != nullptr); |
| 166 | IntSetObject* o = static_cast<IntSetObject*>(object()); |
| 167 | return static_cast<unsigned int>(o->r[i].max-o->r[i].min)+1; |
| 168 | } |
| 169 | |
| 170 | forceinline int |
| 171 | IntSet::ranges(void) const { |
no test coverage detected