GArrowDoubleArray

GArrowDoubleArray — 64-bit floating point array class

Functions

Types and Values

Object Hierarchy

    GObject
    ╰── GArrowArray
        ╰── GArrowDoubleArray

Description

GArrowDoubleArray is a class for 64-bit floating point array. It can store zero or more 64-bit floating data.

GArrowDoubleArray is immutable. You need to use GArrowDoubleArrayBuilder to create a new array.

Functions

garrow_double_array_get_value ()

gdouble
garrow_double_array_get_value (GArrowDoubleArray *array,
                               gint64 i);

Parameters

array

A GArrowDoubleArray.

 

i

The index of the target value.

 

Returns

The i-th value.

Types and Values

struct GArrowDoubleArray

struct GArrowDoubleArray;

It wraps arrow::DoubleArray.