MCPcopy Create free account
hub / github.com/apache/arrow / MakeEmptyIterator

Function MakeEmptyIterator

cpp/src/arrow/util/iterator.h:374–376  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

372
373template <typename T>
374Iterator<T> MakeEmptyIterator() {
375 return MakeFunctionIterator([]() -> Result<T> { return IterationTraits<T>::End(); });
376}
377
378template <typename T>
379Iterator<T> MakeErrorIterator(Status s) {

Callers

nothing calls this directly

Calls 2

MakeFunctionIteratorFunction · 0.85
EndFunction · 0.70

Tested by

no test coverage detected