| 86 | /// Test whether all values of view \a x are excluded from \a s |
| 87 | template<class View> |
| 88 | forceinline bool |
| 89 | excludes(const View& x, int s) { |
| 90 | return !x.in(s); |
| 91 | } |
| 92 | /// Test whether all values of view \a x are excluded from \a s |
| 93 | template<class View> |
| 94 | forceinline bool |
no test coverage detected