GArrowInt32Array

GArrowInt32Array — 32-bit integer array class

Functions

Types and Values

Object Hierarchy

    GObject
    ╰── GArrowArray
        ╰── GArrowInt32Array

Description

GArrowInt32Array is a class for 32-bit integer array. It can store zero or more 32-bit integer data.

GArrowInt32Array is immutable. You need to use GArrowInt32ArrayBuilder to create a new array.

Functions

garrow_int32_array_get_value ()

gint32
garrow_int32_array_get_value (GArrowInt32Array *array,
                              gint64 i);

Parameters

array

A GArrowInt32Array.

 

i

The index of the target value.

 

Returns

The i-th value.

Types and Values

struct GArrowInt32Array

struct GArrowInt32Array;

It wraps arrow::Int32Array.