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

Method Visit

cpp/src/arrow/util/int_util.cc:481–486  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

479
480 template <typename T>
481 enable_if_integer<T, Status> Visit(const T&) {
482 using DestType = typename T::c_type;
483 TransposeInts(src, reinterpret_cast<DestType*>(dest) + dest_offset, length,
484 transpose_map);
485 return Status::OK();
486 }
487
488 Status Visit(const DataType& type) {
489 return Status::TypeError("TransposeInts received non-integer dest_type");

Callers

nothing calls this directly

Calls 3

TransposeIntsFunction · 0.85
OKFunction · 0.50
TypeErrorFunction · 0.50

Tested by

no test coverage detected