GArrowInt32ArrayBuilder — 32-bit integer array builder class
GObject ╰── GArrowArrayBuilder ╰── GArrowInt32ArrayBuilder
GArrowInt32ArrayBuilder is the class to create a new GArrowInt32Array.
GArrowInt32ArrayBuilder * garrow_int32_array_builder_new (void);
void
A newly created GArrowInt32ArrayBuilder.
gboolean garrow_int32_array_builder_append (GArrowInt32ArrayBuilder *builder, gint32 value, GError **error);
GArrowInt32ArrayBuilder *builder
gint32 value
GError **error
builder
A GArrowInt32ArrayBuilder.
value
A int32 value.
error
Return location for a GError or NULL.
NULL
TRUE on success, FALSE if there was an error.
TRUE
FALSE
gboolean garrow_int32_array_builder_append_null (GArrowInt32ArrayBuilder *builder, GError **error);
struct GArrowInt32ArrayBuilder;
It wraps arrow::Int32Builder.
arrow::Int32Builder