GArrowFloatArray

GArrowFloatArray — 32-bit floating point array class

Functions

Types and Values

Object Hierarchy

    GObject
    ╰── GArrowArray
        ╰── GArrowFloatArray

Description

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

GArrowFloatArray is immutable. You need to use GArrowFloatArrayBuilder to create a new array.

Functions

garrow_float_array_get_value ()

gfloat
garrow_float_array_get_value (GArrowFloatArray *array,
                              gint64 i);

Parameters

array

A GArrowFloatArray.

 

i

The index of the target value.

 

Returns

The i-th value.

Types and Values

struct GArrowFloatArray

struct GArrowFloatArray;

It wraps arrow::FloatArray.