* garrow_uint8_array_builder_new: * * Returns: A newly created #GArrowUInt8ArrayBuilder. */
| 1570 | * Returns: A newly created #GArrowUInt8ArrayBuilder. |
| 1571 | */ |
| 1572 | GArrowUInt8ArrayBuilder * |
| 1573 | garrow_uint8_array_builder_new(void) |
| 1574 | { |
| 1575 | auto builder = |
| 1576 | garrow_array_builder_new(arrow::uint8(), NULL, "[uint8-array-builder][new]"); |
| 1577 | return GARROW_UINT8_ARRAY_BUILDER(builder); |
| 1578 | } |
| 1579 | |
| 1580 | /** |
| 1581 | * garrow_uint8_array_builder_append: |
nothing calls this directly
no test coverage detected