* garrow_uint32_array_builder_new: * * Returns: A newly created #GArrowUInt32ArrayBuilder. */
| 2150 | * Returns: A newly created #GArrowUInt32ArrayBuilder. |
| 2151 | */ |
| 2152 | GArrowUInt32ArrayBuilder * |
| 2153 | garrow_uint32_array_builder_new(void) |
| 2154 | { |
| 2155 | auto builder = |
| 2156 | garrow_array_builder_new(arrow::uint32(), NULL, "[uint32-array-builder][new]"); |
| 2157 | return GARROW_UINT32_ARRAY_BUILDER(builder); |
| 2158 | } |
| 2159 | |
| 2160 | /** |
| 2161 | * garrow_uint32_array_builder_append: |
nothing calls this directly
no test coverage detected