GArrowFloatArrayBuilder — 32-bit floating point array builder class
GObject ╰── GArrowArrayBuilder ╰── GArrowFloatArrayBuilder
GArrowFloatArrayBuilder is the class to creating a new GArrowFloatArray.
GArrowFloatArrayBuilder * garrow_float_array_builder_new (void);
void
A newly created GArrowFloatArrayBuilder.
gboolean garrow_float_array_builder_append (GArrowFloatArrayBuilder *builder, gfloat value, GError **error);
GArrowFloatArrayBuilder *builder
gfloat value
GError **error
builder
A GArrowFloatArrayBuilder.
value
A float value.
error
Return location for a GError or NULL.
NULL
TRUE on success, FALSE if there was an error.
TRUE
FALSE
gboolean garrow_float_array_builder_append_null (GArrowFloatArrayBuilder *builder, GError **error);
struct GArrowFloatArrayBuilder;
It wraps arrow::FloatBuilder.
arrow::FloatBuilder