* garrow_int16_array_builder_new: * * Returns: A newly created #GArrowInt16ArrayBuilder. */
| 1715 | * Returns: A newly created #GArrowInt16ArrayBuilder. |
| 1716 | */ |
| 1717 | GArrowInt16ArrayBuilder * |
| 1718 | garrow_int16_array_builder_new(void) |
| 1719 | { |
| 1720 | auto builder = |
| 1721 | garrow_array_builder_new(arrow::int16(), NULL, "[int16-array-builder][new]"); |
| 1722 | return GARROW_INT16_ARRAY_BUILDER(builder); |
| 1723 | } |
| 1724 | |
| 1725 | /** |
| 1726 | * garrow_int16_array_builder_append: |
nothing calls this directly
no test coverage detected