MCPcopy Create free account
hub / github.com/apache/arrow / garrow_array_builder_get_child

Function garrow_array_builder_get_child

c_glib/arrow-glib/array-builder.cpp:701–707  ·  view source on GitHub ↗

* 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 */

Source from the content-addressed store, hash-verified

699 * Since: 12.0.0
700 */
701GArrowArrayBuilder *
702garrow_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:

Calls 1

Tested by

no test coverage detected