GArrowStringArrayBuilder

GArrowStringArrayBuilder — UTF-8 encoded string array builder class

Functions

Types and Values

Object Hierarchy

    GObject
    ╰── GArrowArrayBuilder
        ╰── GArrowBinaryArrayBuilder
            ╰── GArrowStringArrayBuilder

Description

GArrowStringArrayBuilder is the class to create a new GArrowStringArray.

Functions

garrow_string_array_builder_new ()

GArrowStringArrayBuilder *
garrow_string_array_builder_new (void);

Returns

A newly created GArrowStringArrayBuilder.


garrow_string_array_builder_append ()

gboolean
garrow_string_array_builder_append (GArrowStringArrayBuilder *builder,
                                    const gchar *value,
                                    GError **error);

Parameters

builder

A GArrowStringArrayBuilder.

 

value

A string value.

 

error

Return location for a GError or NULL.

[nullable]

Returns

TRUE on success, FALSE if there was an error.

Types and Values

struct GArrowStringArrayBuilder

struct GArrowStringArrayBuilder;

It wraps arrow::StringBuilder.