GArrowInt16ArrayBuilder — 16-bit integer array builder class
GObject ╰── GArrowArrayBuilder ╰── GArrowInt16ArrayBuilder
GArrowInt16ArrayBuilder is the class to create a new GArrowInt16Array.
GArrowInt16ArrayBuilder * garrow_int16_array_builder_new (void);
void
A newly created GArrowInt16ArrayBuilder.
gboolean garrow_int16_array_builder_append (GArrowInt16ArrayBuilder *builder, gint16 value, GError **error);
GArrowInt16ArrayBuilder *builder
gint16 value
GError **error
builder
A GArrowInt16ArrayBuilder.
value
A int16 value.
error
Return location for a GError or NULL.
NULL
TRUE on success, FALSE if there was an error.
TRUE
FALSE
gboolean garrow_int16_array_builder_append_null (GArrowInt16ArrayBuilder *builder, GError **error);
struct GArrowInt16ArrayBuilder;
It wraps arrow::Int16Builder.
arrow::Int16Builder