* garrow_float_array_builder_new: * * Returns: A newly created #GArrowFloatArrayBuilder. */
| 2674 | * Returns: A newly created #GArrowFloatArrayBuilder. |
| 2675 | */ |
| 2676 | GArrowFloatArrayBuilder * |
| 2677 | garrow_float_array_builder_new(void) |
| 2678 | { |
| 2679 | auto builder = |
| 2680 | garrow_array_builder_new(arrow::float32(), NULL, "[float-array-builder][new]"); |
| 2681 | return GARROW_FLOAT_ARRAY_BUILDER(builder); |
| 2682 | } |
| 2683 | |
| 2684 | /** |
| 2685 | * garrow_float_array_builder_append: |
nothing calls this directly
no test coverage detected