* garrow_boolean_array_get_value: * @array: A #GArrowBooleanArray. * @i: The index of the target value. * * Returns: The @i-th value. */
| 1518 | * Returns: The @i-th value. |
| 1519 | */ |
| 1520 | gboolean |
| 1521 | garrow_boolean_array_get_value(GArrowBooleanArray *array, gint64 i) |
| 1522 | { |
| 1523 | auto arrow_array = garrow_array_get_raw(GARROW_ARRAY(array)); |
| 1524 | return static_cast<arrow::BooleanArray *>(arrow_array.get())->Value(i); |
| 1525 | } |
| 1526 | |
| 1527 | /** |
| 1528 | * garrow_boolean_array_get_values: |
nothing calls this directly
no test coverage detected