| 136 | |
| 137 | template<class View, class A> |
| 138 | forceinline void |
| 139 | SupportValues<View,A>::Unsupported::find(void) { |
| 140 | // Skip all supported positions |
| 141 | while ((p < sv.x.size()) && !sv.bs.get(p)) |
| 142 | p = sv.bs.next(p); |
| 143 | // Move to matching range |
| 144 | while ((rp < sv.rp_lst) && (p >= (rp+1)->pos)) |
| 145 | rp++; |
| 146 | } |
| 147 | |
| 148 | template<class View, class A> |
| 149 | forceinline |
no test coverage detected