GArrowInt64ArrayBuilder — 64-bit integer array builder class
GObject ╰── GArrowArrayBuilder ╰── GArrowInt64ArrayBuilder
GArrowInt64ArrayBuilder is the class to create a new GArrowInt64Array.
GArrowInt64ArrayBuilder * garrow_int64_array_builder_new (void);
void
A newly created GArrowInt64ArrayBuilder.
gboolean garrow_int64_array_builder_append (GArrowInt64ArrayBuilder *builder, gint64 value, GError **error);
GArrowInt64ArrayBuilder *builder
gint64 value
GError **error
builder
A GArrowInt64ArrayBuilder.
value
A int64 value.
error
Return location for a GError or NULL.
NULL
TRUE on success, FALSE if there was an error.
TRUE
FALSE
gboolean garrow_int64_array_builder_append_null (GArrowInt64ArrayBuilder *builder, GError **error);
struct GArrowInt64ArrayBuilder;
It wraps arrow::Int64Builder.
arrow::Int64Builder