GArrowBooleanArray

GArrowBooleanArray — Boolean array class

Functions

Types and Values

Object Hierarchy

    GObject
    ╰── GArrowArray
        ╰── GArrowBooleanArray

Description

GArrowBooleanArray is a class for binary array. It can store zero or more boolean data.

GArrowBooleanArray is immutable. You need to use GArrowBooleanArrayBuilder to create a new array.

Functions

garrow_boolean_array_get_value ()

gboolean
garrow_boolean_array_get_value (GArrowBooleanArray *array,
                                gint64 i);

Parameters

array

A GArrowBooleanArray.

 

i

The index of the target value.

 

Returns

The i-th value.

Types and Values

struct GArrowBooleanArray

struct GArrowBooleanArray;

It wraps arrow::BooleanArray.