* garrow_uint16_array_builder_new: * * Returns: A newly created #GArrowUInt16ArrayBuilder. */
| 1860 | * Returns: A newly created #GArrowUInt16ArrayBuilder. |
| 1861 | */ |
| 1862 | GArrowUInt16ArrayBuilder * |
| 1863 | garrow_uint16_array_builder_new(void) |
| 1864 | { |
| 1865 | auto builder = |
| 1866 | garrow_array_builder_new(arrow::uint16(), NULL, "[uint16-array-builder][new]"); |
| 1867 | return GARROW_UINT16_ARRAY_BUILDER(builder); |
| 1868 | } |
| 1869 | |
| 1870 | /** |
| 1871 | * garrow_uint16_array_builder_append: |
nothing calls this directly
no test coverage detected