* garrow_int32_array_builder_new: * * Returns: A newly created #GArrowInt32ArrayBuilder. */
| 2005 | * Returns: A newly created #GArrowInt32ArrayBuilder. |
| 2006 | */ |
| 2007 | GArrowInt32ArrayBuilder * |
| 2008 | garrow_int32_array_builder_new(void) |
| 2009 | { |
| 2010 | auto builder = |
| 2011 | garrow_array_builder_new(arrow::int32(), NULL, "[int32-array-builder][new]"); |
| 2012 | return GARROW_INT32_ARRAY_BUILDER(builder); |
| 2013 | } |
| 2014 | |
| 2015 | /** |
| 2016 | * garrow_int32_array_builder_append: |
no test coverage detected