* garrow_array_builder_get_child: * @builder: A #GArrowArrayBuilder. * @i: The index of the child. * * Returns: (transfer none): The #GArrowArrayBuilder for the i-th child. * * Since: 12.0.0 */
| 699 | * Since: 12.0.0 |
| 700 | */ |
| 701 | GArrowArrayBuilder * |
| 702 | garrow_array_builder_get_child(GArrowArrayBuilder *builder, gint i) |
| 703 | { |
| 704 | auto children = garrow_array_builder_get_children(builder); |
| 705 | auto child = g_list_nth_data(children, i); |
| 706 | return GARROW_ARRAY_BUILDER(child); |
| 707 | } |
| 708 | |
| 709 | /** |
| 710 | * garrow_array_builder_get_children: |
no test coverage detected