Non-templated version of VectorIt to allow better type deduction
| 117 | |
| 118 | // Non-templated version of VectorIt<T> to allow better type deduction |
| 119 | inline Iterator<TestInt> VectorIt(std::vector<TestInt> v) { |
| 120 | return MakeVectorIterator<TestInt>(std::move(v)); |
| 121 | } |
| 122 | |
| 123 | template <typename Fn, typename T> |
| 124 | inline Iterator<T> FilterIt(Iterator<T> it, Fn&& fn) { |