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

Function ToString

cpp/src/arrow/compute/kernels/scalar_nested.cc:132–134  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

130
131template <typename T>
132std::string ToString(const std::optional<T>& o) {
133 return o.has_value() ? ToChars(*o) : "(nullopt)";
134}
135
136/// \param stop User-provided stop or the length of the input list
137int64_t ListSliceLength(int64_t start, int64_t step, int64_t stop) {

Callers 7

ExecMethod · 0.70
ExecuteImplMethod · 0.70
CheckDispatchBestFunction · 0.70
ToRecordBatchMethod · 0.50
ToStringMethod · 0.50
ToStringMethod · 0.50
NoMatchingKernelFunction · 0.50

Calls 1

ToCharsFunction · 0.85

Tested by 1

CheckDispatchBestFunction · 0.56