* garrow_int8_array_builder_new: * * Returns: A newly created #GArrowInt8ArrayBuilder. */
| 1425 | * Returns: A newly created #GArrowInt8ArrayBuilder. |
| 1426 | */ |
| 1427 | GArrowInt8ArrayBuilder * |
| 1428 | garrow_int8_array_builder_new(void) |
| 1429 | { |
| 1430 | auto builder = |
| 1431 | garrow_array_builder_new(arrow::int8(), NULL, "[int8-array-builder][new]"); |
| 1432 | return GARROW_INT8_ARRAY_BUILDER(builder); |
| 1433 | } |
| 1434 | |
| 1435 | /** |
| 1436 | * garrow_int8_array_builder_append: |
nothing calls this directly
no test coverage detected