| 377 | |
| 378 | template <typename T> |
| 379 | Iterator<T> MakeErrorIterator(Status s) { |
| 380 | return MakeFunctionIterator([s]() -> Result<T> { |
| 381 | ARROW_RETURN_NOT_OK(s); |
| 382 | return IterationTraits<T>::End(); |
| 383 | }); |
| 384 | } |
| 385 | |
| 386 | /// \brief Simple iterator which yields the elements of a std::vector |
| 387 | template <typename T> |
nothing calls this directly
no test coverage detected