| 372 | |
| 373 | template <typename T> |
| 374 | Iterator<T> MakeEmptyIterator() { |
| 375 | return MakeFunctionIterator([]() -> Result<T> { return IterationTraits<T>::End(); }); |
| 376 | } |
| 377 | |
| 378 | template <typename T> |
| 379 | Iterator<T> MakeErrorIterator(Status s) { |
nothing calls this directly
no test coverage detected