* garrow_int64_array_builder_new: * * Returns: A newly created #GArrowInt64ArrayBuilder. */
| 2295 | * Returns: A newly created #GArrowInt64ArrayBuilder. |
| 2296 | */ |
| 2297 | GArrowInt64ArrayBuilder * |
| 2298 | garrow_int64_array_builder_new(void) |
| 2299 | { |
| 2300 | auto builder = |
| 2301 | garrow_array_builder_new(arrow::int64(), NULL, "[int64-array-builder][new]"); |
| 2302 | return GARROW_INT64_ARRAY_BUILDER(builder); |
| 2303 | } |
| 2304 | |
| 2305 | /** |
| 2306 | * garrow_int64_array_builder_append: |
nothing calls this directly
no test coverage detected