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

Function GetValues

cpp/src/arrow/array/data.h:252–258  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

250 /// by the caller.
251 template <typename T>
252 inline const T* GetValues(int i, int64_t absolute_offset) const {
253 if (buffers[i]) {
254 return reinterpret_cast<const T*>(buffers[i]->data()) + absolute_offset;
255 } else {
256 return NULLPTR;
257 }
258 }
259
260 /// \brief Access a buffer's data as a typed C pointer
261 ///

Callers 5

PlainMethod · 0.85
ByteStreamSplitMethod · 0.85
RleMethod · 0.85
DeltaBitPackMethod · 0.85
DictMethod · 0.85

Calls 1

dataMethod · 0.45

Tested by 5

PlainMethod · 0.68
ByteStreamSplitMethod · 0.68
RleMethod · 0.68
DeltaBitPackMethod · 0.68
DictMethod · 0.68