* garrow_null_array_builder_new: * * Returns: A newly created #GArrowNullArrayBuilder. * * Since: 0.13.0 */
| 900 | * Since: 0.13.0 |
| 901 | */ |
| 902 | GArrowNullArrayBuilder * |
| 903 | garrow_null_array_builder_new(void) |
| 904 | { |
| 905 | auto builder = |
| 906 | garrow_array_builder_new(arrow::null(), NULL, "[null-array-builder][new]"); |
| 907 | return GARROW_NULL_ARRAY_BUILDER(builder); |
| 908 | } |
| 909 | |
| 910 | /** |
| 911 | * garrow_null_array_builder_append_null: (skip) |
nothing calls this directly
no test coverage detected