* garrow_uint8_array_get_value: * @array: A #GArrowUInt8Array. * @i: The index of the target value. * * Returns: The @i-th value. */
| 1671 | * Returns: The @i-th value. |
| 1672 | */ |
| 1673 | guint8 |
| 1674 | garrow_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: |
nothing calls this directly
no test coverage detected