GArrowUInt32ArrayBuilder

GArrowUInt32ArrayBuilder — 32-bit unsigned integer array builder class

Functions

Types and Values

Object Hierarchy

    GObject
    ╰── GArrowArrayBuilder
        ╰── GArrowUInt32ArrayBuilder

Description

GArrowUInt32ArrayBuilder is the class to create a new GArrowUInt32Array.

Functions

garrow_uint32_array_builder_new ()

GArrowUInt32ArrayBuilder *
garrow_uint32_array_builder_new (void);

Returns

A newly created GArrowUInt32ArrayBuilder.


garrow_uint32_array_builder_append ()

gboolean
garrow_uint32_array_builder_append (GArrowUInt32ArrayBuilder *builder,
                                    guint32 value,
                                    GError **error);

Parameters

builder

A GArrowUInt32ArrayBuilder.

 

value

An uint32 value.

 

error

Return location for a GError or NULL.

[nullable]

Returns

TRUE on success, FALSE if there was an error.


garrow_uint32_array_builder_append_null ()

gboolean
garrow_uint32_array_builder_append_null
                               (GArrowUInt32ArrayBuilder *builder,
                                GError **error);

Parameters

builder

A GArrowUInt32ArrayBuilder.

 

error

Return location for a GError or NULL.

[nullable]

Returns

TRUE on success, FALSE if there was an error.

Types and Values

struct GArrowUInt32ArrayBuilder

struct GArrowUInt32ArrayBuilder;

It wraps arrow::UInt32Builder.