* garrow_array_is_valid: * @array: A #GArrowArray. * @i: The index of the target value. * * Returns: Whether the @i-th value is valid (not null) or not. * * Since: 0.8.0 */
| 1049 | * Since: 0.8.0 |
| 1050 | */ |
| 1051 | gboolean |
| 1052 | garrow_array_is_valid(GArrowArray *array, gint64 i) |
| 1053 | { |
| 1054 | auto arrow_array = garrow_array_get_raw(array); |
| 1055 | return arrow_array->IsValid(i); |
| 1056 | } |
| 1057 | |
| 1058 | /** |
| 1059 | * garrow_array_get_length: |
nothing calls this directly
no test coverage detected