| 2065 | /// This generator is async-reentrant. |
| 2066 | template <typename T> |
| 2067 | AsyncGenerator<T> MakeDefaultIfEmptyGenerator(AsyncGenerator<T> source, T or_value) { |
| 2068 | return DefaultIfEmptyGenerator<T>(std::move(source), std::move(or_value)); |
| 2069 | } |
| 2070 | } // namespace arrow |
no outgoing calls