GArrowUInt64Array

GArrowUInt64Array — 64-bit unsigned integer array class

Functions

Types and Values

Object Hierarchy

    GObject
    ╰── GArrowArray
        ╰── GArrowUInt64Array

Description

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

GArrowUInt64Array is immutable. You need to use GArrowUInt64ArrayBuilder to create a new array.

Functions

garrow_uint64_array_get_value ()

guint64
garrow_uint64_array_get_value (GArrowUInt64Array *array,
                               gint64 i);

Parameters

array

A GArrowUInt64Array.

 

i

The index of the target value.

 

Returns

The i-th value.

Types and Values

struct GArrowUInt64Array

struct GArrowUInt64Array;

It wraps arrow::UInt64Array.