GArrowUInt8ArrayBuilder — 8-bit unsigned integer array builder class
GObject ╰── GArrowArrayBuilder ╰── GArrowUInt8ArrayBuilder
GArrowUInt8ArrayBuilder is the class to create a new GArrowUInt8Array.
GArrowUInt8ArrayBuilder * garrow_uint8_array_builder_new (void);
void
A newly created GArrowUInt8ArrayBuilder.
gboolean garrow_uint8_array_builder_append (GArrowUInt8ArrayBuilder *builder, guint8 value, GError **error);
GArrowUInt8ArrayBuilder *builder
guint8 value
GError **error
builder
A GArrowUInt8ArrayBuilder.
value
An uint8 value.
error
Return location for a GError or NULL.
NULL
TRUE on success, FALSE if there was an error.
TRUE
FALSE
gboolean garrow_uint8_array_builder_append_null (GArrowUInt8ArrayBuilder *builder, GError **error);
struct GArrowUInt8ArrayBuilder;
It wraps arrow::UInt8Builder.
arrow::UInt8Builder