* garrow_int16_array_get_value: * @array: A #GArrowInt16Array. * @i: The index of the target value. * * Returns: The @i-th value. */
| 1737 | * Returns: The @i-th value. |
| 1738 | */ |
| 1739 | gint16 |
| 1740 | garrow_int16_array_get_value(GArrowInt16Array *array, gint64 i) |
| 1741 | { |
| 1742 | auto arrow_array = garrow_array_get_raw(GARROW_ARRAY(array)); |
| 1743 | return static_cast<arrow::Int16Array *>(arrow_array.get())->Value(i); |
| 1744 | } |
| 1745 | |
| 1746 | /** |
| 1747 | * garrow_int16_array_get_values: |
nothing calls this directly
no test coverage detected