| 62 | |
| 63 | template <typename T> |
| 64 | inline Iterator<T> VectorIt(std::vector<T> v) { |
| 65 | return MakeVectorIterator<T>(std::move(v)); |
| 66 | } |
| 67 | |
| 68 | template <typename T> |
| 69 | inline Iterator<T> PossiblySlowVectorIt(std::vector<T> v, bool slow = false) { |
no outgoing calls
no test coverage detected