* garrow_uint64_array_builder_new: * * Returns: A newly created #GArrowUInt64ArrayBuilder. */
| 2440 | * Returns: A newly created #GArrowUInt64ArrayBuilder. |
| 2441 | */ |
| 2442 | GArrowUInt64ArrayBuilder * |
| 2443 | garrow_uint64_array_builder_new(void) |
| 2444 | { |
| 2445 | auto builder = |
| 2446 | garrow_array_builder_new(arrow::uint64(), NULL, "[uint64-array-builder][new]"); |
| 2447 | return GARROW_UINT64_ARRAY_BUILDER(builder); |
| 2448 | } |
| 2449 | |
| 2450 | /** |
| 2451 | * garrow_uint64_array_builder_append: |
nothing calls this directly
no test coverage detected