* garrow_array_get_offset: * @array: A #GArrowArray. * * Returns: The number of values in the array. */
| 1074 | * Returns: The number of values in the array. |
| 1075 | */ |
| 1076 | gint64 |
| 1077 | garrow_array_get_offset(GArrowArray *array) |
| 1078 | { |
| 1079 | auto arrow_array = garrow_array_get_raw(array); |
| 1080 | return arrow_array->offset(); |
| 1081 | } |
| 1082 | |
| 1083 | /** |
| 1084 | * garrow_array_get_n_nulls: |
nothing calls this directly
no test coverage detected