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

Function garrow_uint8_array_get_value

c_glib/arrow-glib/basic-array.cpp:1673–1678  ·  view source on GitHub ↗

* garrow_uint8_array_get_value: * @array: A #GArrowUInt8Array. * @i: The index of the target value. * * Returns: The @i-th value. */

Source from the content-addressed store, hash-verified

1671 * Returns: The @i-th value.
1672 */
1673guint8
1674garrow_uint8_array_get_value(GArrowUInt8Array *array, gint64 i)
1675{
1676 auto arrow_array = garrow_array_get_raw(GARROW_ARRAY(array));
1677 return static_cast<arrow::UInt8Array *>(arrow_array.get())->Value(i);
1678}
1679
1680/**
1681 * garrow_uint8_array_get_values:

Callers

nothing calls this directly

Calls 3

garrow_array_get_rawFunction · 0.70
ValueMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected