| 127 | |
| 128 | template <typename T> |
| 129 | inline Iterator<T> FlattenIt(Iterator<Iterator<T>> its) { |
| 130 | return MakeFlattenIterator(std::move(its)); |
| 131 | } |
| 132 | |
| 133 | template <typename T> |
| 134 | void AssertIteratorMatch(std::vector<T> expected, Iterator<T> actual) { |
no test coverage detected