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

Function first_varbinary_offset_and_length

cpp/src/arrow/compute/row/row_internal.h:126–131  ·  view source on GitHub ↗

Returns the offset within the row and length of the first varbinary field.

Source from the content-addressed store, hash-verified

124
125 /// Returns the offset within the row and length of the first varbinary field.
126 inline void first_varbinary_offset_and_length(const uint8_t* row, uint32_t* offset,
127 uint32_t* length) const {
128 ARROW_DCHECK(!is_fixed_length);
129 *offset = fixed_length;
130 *length = varbinary_end_array(row)[0] - fixed_length;
131 }
132
133 /// Returns the offset within the row and length of the second and further varbinary
134 /// fields.

Callers

nothing calls this directly

Calls 1

varbinary_end_arrayFunction · 0.85

Tested by

no test coverage detected