* garrow_int32_array_get_value: * @array: A #GArrowInt32Array. * @i: The index of the target value. * * Returns: The @i-th value. */
| 1869 | * Returns: The @i-th value. |
| 1870 | */ |
| 1871 | gint32 |
| 1872 | garrow_int32_array_get_value(GArrowInt32Array *array, gint64 i) |
| 1873 | { |
| 1874 | auto arrow_array = garrow_array_get_raw(GARROW_ARRAY(array)); |
| 1875 | return static_cast<arrow::Int32Array *>(arrow_array.get())->Value(i); |
| 1876 | } |
| 1877 | |
| 1878 | /** |
| 1879 | * garrow_int32_array_get_values: |
no test coverage detected