GArrowInt8ArrayBuilder — 8-bit integer array builder class
GObject ╰── GArrowArrayBuilder ╰── GArrowInt8ArrayBuilder
GArrowInt8ArrayBuilder is the class to create a new GArrowInt8Array.
GArrowInt8ArrayBuilder * garrow_int8_array_builder_new (void);
void
A newly created GArrowInt8ArrayBuilder.
gboolean garrow_int8_array_builder_append (GArrowInt8ArrayBuilder *builder, gint8 value, GError **error);
GArrowInt8ArrayBuilder *builder
gint8 value
GError **error
builder
A GArrowInt8ArrayBuilder.
value
A int8 value.
error
Return location for a GError or NULL.
NULL
TRUE on success, FALSE if there was an error.
TRUE
FALSE
gboolean garrow_int8_array_builder_append_null (GArrowInt8ArrayBuilder *builder, GError **error);
struct GArrowInt8ArrayBuilder;
It wraps arrow::Int8Builder.
arrow::Int8Builder