GArrowInt64Array

GArrowInt64Array — 64-bit integer array class

Functions

Types and Values

Object Hierarchy

    GObject
    ╰── GArrowArray
        ╰── GArrowInt64Array

Description

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

GArrowInt64Array is immutable. You need to use GArrowInt64ArrayBuilder to create a new array.

Functions

garrow_int64_array_get_value ()

gint64
garrow_int64_array_get_value (GArrowInt64Array *array,
                              gint64 i);

Parameters

array

A GArrowInt64Array.

 

i

The index of the target value.

 

Returns

The i-th value.

Types and Values

struct GArrowInt64Array

struct GArrowInt64Array;

It wraps arrow::Int64Array.