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

Class DefaultValueAccessor

cpp/src/arrow/stl_iterator.h:38–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36
37template <typename ArrayType>
38struct DefaultValueAccessor {
39 using ValueType = decltype(std::declval<ArrayType>().GetView(0));
40
41 ValueType operator()(const ArrayType& array, int64_t index) {
42 return array.GetView(index);
43 }
44};
45
46} // namespace detail
47

Callers

nothing calls this directly

Calls 1

GetViewMethod · 0.45

Tested by

no test coverage detected