* garrow_array_builder_get_length: * @builder: A #GArrowArrayBuilder. * * Returns: The current length of the building array. * * Since: 2.0.0 */
| 668 | * Since: 2.0.0 |
| 669 | */ |
| 670 | gint64 |
| 671 | garrow_array_builder_get_length(GArrowArrayBuilder *builder) |
| 672 | { |
| 673 | auto arrow_builder = garrow_array_builder_get_raw(builder); |
| 674 | return arrow_builder->length(); |
| 675 | } |
| 676 | |
| 677 | /** |
| 678 | * garrow_array_builder_get_n_nulls: |
nothing calls this directly
no test coverage detected