| 167 | |
| 168 | template<class View> |
| 169 | forceinline bool |
| 170 | ValSet::subset(View x) const { |
| 171 | if (empty() || (x.min() < min()) || (x.max() > max())) |
| 172 | return false; |
| 173 | ValSet::Ranges vsr(*this); |
| 174 | ViewRanges<View> xr(x); |
| 175 | return Iter::Ranges::subset(xr,vsr); |
| 176 | } |
| 177 | |
| 178 | }} |
| 179 |