GArrowInt16Array

GArrowInt16Array — 16-bit integer array class

Functions

Types and Values

Object Hierarchy

    GObject
    ╰── GArrowArray
        ╰── GArrowInt16Array

Description

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

GArrowInt16Array is immutable. You need to use GArrowInt16ArrayBuilder to create a new array.

Functions

garrow_int16_array_get_value ()

gint16
garrow_int16_array_get_value (GArrowInt16Array *array,
                              gint64 i);

Parameters

array

A GArrowInt16Array.

 

i

The index of the target value.

 

Returns

The i-th value.

Types and Values

struct GArrowInt16Array

struct GArrowInt16Array;

It wraps arrow::Int16Array.