| 59 | // in for loops a bit easier. Analogous to std::make_pair(). |
| 60 | template <class T> |
| 61 | iterator_range<T> make_range(T x, T y) { |
| 62 | return iterator_range<T>(std::move(x), std::move(y)); |
| 63 | } |
| 64 | |
| 65 | } // namespace gtl |
| 66 | } // namespace tensorflow |
no outgoing calls