GArrowInt8Array

GArrowInt8Array — 8-bit integer array class

Functions

Types and Values

Object Hierarchy

    GObject
    ╰── GArrowArray
        ╰── GArrowInt8Array

Description

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

GArrowInt8Array is immutable. You need to use GArrowInt8ArrayBuilder to create a new array.

Functions

garrow_int8_array_get_value ()

gint8
garrow_int8_array_get_value (GArrowInt8Array *array,
                             gint64 i);

Parameters

array

A GArrowInt8Array.

 

i

The index of the target value.

 

Returns

The i-th value.

Types and Values

struct GArrowInt8Array

struct GArrowInt8Array;

It wraps arrow::Int8Array.