GArrowBooleanArrayBuilder

GArrowBooleanArrayBuilder — Boolean array builder class

Functions

Types and Values

Object Hierarchy

    GObject
    ╰── GArrowArrayBuilder
        ╰── GArrowBooleanArrayBuilder

Description

GArrowBooleanArrayBuilder is the class to create a new GArrowBooleanArray.

Functions

garrow_boolean_array_builder_new ()

GArrowBooleanArrayBuilder *
garrow_boolean_array_builder_new (void);

Returns

A newly created GArrowBooleanArrayBuilder.


garrow_boolean_array_builder_append ()

gboolean
garrow_boolean_array_builder_append (GArrowBooleanArrayBuilder *builder,
                                     gboolean value,
                                     GError **error);

Parameters

builder

A GArrowBooleanArrayBuilder.

 

value

A boolean value.

 

error

Return location for a GError or NULL.

[nullable]

Returns

TRUE on success, FALSE if there was an error.


garrow_boolean_array_builder_append_null ()

gboolean
garrow_boolean_array_builder_append_null
                               (GArrowBooleanArrayBuilder *builder,
                                GError **error);

Parameters

builder

A GArrowBooleanArrayBuilder.

 

error

Return location for a GError or NULL.

[nullable]

Returns

TRUE on success, FALSE if there was an error.

Types and Values

struct GArrowBooleanArrayBuilder

struct GArrowBooleanArrayBuilder;

It wraps arrow::BooleanBuilder.