GArrowUInt16Array

GArrowUInt16Array — 16-bit unsigned integer array class

Functions

Types and Values

Object Hierarchy

    GObject
    ╰── GArrowArray
        ╰── GArrowUInt16Array

Description

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

GArrowUInt16Array is immutable. You need to use GArrowUInt16ArrayBuilder to create a new array.

Functions

garrow_uint16_array_get_value ()

guint16
garrow_uint16_array_get_value (GArrowUInt16Array *array,
                               gint64 i);

Parameters

array

A GArrowUInt16Array.

 

i

The index of the target value.

 

Returns

The i-th value.

Types and Values

struct GArrowUInt16Array

struct GArrowUInt16Array;

It wraps arrow::UInt16Array.