GArrowUInt32Array

GArrowUInt32Array — 32-bit unsigned integer array class

Functions

Types and Values

Object Hierarchy

    GObject
    ╰── GArrowArray
        ╰── GArrowUInt32Array

Description

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

GArrowUInt32Array is immutable. You need to use GArrowUInt32ArrayBuilder to create a new array.

Functions

garrow_uint32_array_get_value ()

guint32
garrow_uint32_array_get_value (GArrowUInt32Array *array,
                               gint64 i);

Parameters

array

A GArrowUInt32Array.

 

i

The index of the target value.

 

Returns

The i-th value.

Types and Values

struct GArrowUInt32Array

struct GArrowUInt32Array;

It wraps arrow::UInt32Array.