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

Method End

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

\brief a reserved value which indicates the end of iteration. By default this is NULLPTR since most iterators yield pointer types. Specialize IterationTraits if different end semantics are required. Note: This should not be used to determine if a given value is a terminal value. Use IsIterationEnd (which uses IsEnd) instead. This is only for returning terminal values.

Source from the content-addressed store, hash-verified

49 /// terminal value. Use IsIterationEnd (which uses IsEnd) instead. This
50 /// is only for returning terminal values.
51 static T End() { return T(NULLPTR); }
52
53 /// \brief Checks to see if the value is a terminal value.
54 /// A method is used here since T is not necessarily comparable in many

Callers 4

StreamingCompressFunction · 0.45
CheckStreamingCompressorFunction · 0.45
CheckStreamingRoundtripFunction · 0.45
WrapAsyncGeneratorFunction · 0.45

Calls

no outgoing calls

Tested by 2

CheckStreamingCompressorFunction · 0.36
CheckStreamingRoundtripFunction · 0.36