GArrowStringArray

GArrowStringArray — UTF-8 encoded string array class

Functions

Types and Values

Object Hierarchy

    GObject
    ╰── GArrowArray
        ╰── GArrowBinaryArray
            ╰── GArrowStringArray

Description

GArrowStringArray is a class for UTF-8 encoded string array. It can store zero or more UTF-8 encoded string data.

GArrowStringArray is immutable. You need to use GArrowStringArrayBuilder to create a new array.

Functions

garrow_string_array_get_string ()

gchar *
garrow_string_array_get_string (GArrowStringArray *array,
                                gint64 i);

Parameters

array

A GArrowStringArray.

 

i

The index of the target value.

 

Returns

The i-th UTF-8 encoded string.

Types and Values

struct GArrowStringArray

struct GArrowStringArray;

It wraps arrow::StringArray.