* garrow_array_is_null: * @array: A #GArrowArray. * @i: The index of the target value. * * Returns: Whether the @i-th value is null or not. * * Since: 0.3.0 */
| 1033 | * Since: 0.3.0 |
| 1034 | */ |
| 1035 | gboolean |
| 1036 | garrow_array_is_null(GArrowArray *array, gint64 i) |
| 1037 | { |
| 1038 | auto arrow_array = garrow_array_get_raw(array); |
| 1039 | return arrow_array->IsNull(i); |
| 1040 | } |
| 1041 | |
| 1042 | /** |
| 1043 | * garrow_array_is_valid: |
nothing calls this directly
no test coverage detected