| 403 | |
| 404 | template <typename T> |
| 405 | Iterator<T> MakeVectorIterator(std::vector<T> v) { |
| 406 | return Iterator<T>(VectorIterator<T>(std::move(v))); |
| 407 | } |
| 408 | |
| 409 | /// \brief Simple iterator which yields *pointers* to the elements of a std::vector<T>. |
| 410 | /// This is provided to support T where IterationTraits<T>::End is not specialized |
no outgoing calls