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