| 237 | |
| 238 | template <class Iterator1, class Iterator2, class BinaryPred> |
| 239 | constexpr bool equal(Iterator1 first1, Iterator1 last1, Iterator2 first2, BinaryPred p) |
| 240 | { |
| 241 | for(; first1 != last1; ++first1, ++first2) |
| 242 | if(not p(*first1, *first2)) |
| 243 | { |
| 244 | return false; |
| 245 | } |
| 246 | return true; |
| 247 | } |
| 248 | |
| 249 | template <class Iterator, class T> |
| 250 | constexpr void iota(Iterator first, Iterator last, T value) |
no outgoing calls
no test coverage detected