| 29 | // FirstNotOf |
| 30 | template <class It1, class It2> |
| 31 | inline It1 FindFirstNotOf(It1 b, It2 e) const noexcept { |
| 32 | return FindFirst<true>(b, e); |
| 33 | } |
| 34 | |
| 35 | template <class It> |
| 36 | inline It FindFirstNotOf(It s) const noexcept { |
no test coverage detected