* garrow_array_builder_get_capacity: * @builder: A #GArrowArrayBuilder. * * Returns: The capacity of the building array. * * Since: 2.0.0 */
| 653 | * Since: 2.0.0 |
| 654 | */ |
| 655 | gint64 |
| 656 | garrow_array_builder_get_capacity(GArrowArrayBuilder *builder) |
| 657 | { |
| 658 | auto arrow_builder = garrow_array_builder_get_raw(builder); |
| 659 | return arrow_builder->capacity(); |
| 660 | } |
| 661 | |
| 662 | /** |
| 663 | * garrow_array_builder_get_length: |
nothing calls this directly
no test coverage detected