| 1914 | /// is finished |
| 1915 | template <typename T> |
| 1916 | Iterator<T> MakeGeneratorIterator(AsyncGenerator<T> source) { |
| 1917 | return Iterator<T>(GeneratorIterator<T>(std::move(source))); |
| 1918 | } |
| 1919 | |
| 1920 | /// \brief Add readahead to an iterator using a background thread. |
| 1921 | /// |
no outgoing calls