GArrowUInt8Array

GArrowUInt8Array — 8-bit unsigned integer array class

Functions

Types and Values

Object Hierarchy

    GObject
    ╰── GArrowArray
        ╰── GArrowUInt8Array

Description

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

GArrowUInt8Array is immutable. You need to use GArrowUInt8ArrayBuilder to create a new array.

Functions

garrow_uint8_array_get_value ()

guint8
garrow_uint8_array_get_value (GArrowUInt8Array *array,
                              gint64 i);

Parameters

array

A GArrowUInt8Array.

 

i

The index of the target value.

 

Returns

The i-th value.

Types and Values

struct GArrowUInt8Array

struct GArrowUInt8Array;

It wraps arrow::UInt8Array.