Constructor

ArrowMapArraynew

Declaration [src]

GArrowMapArray*
garrow_map_array_new (
  GArrowArray* offsets,
  GArrowArray* keys,
  GArrowArray* items,
  GError** error
)

Description

No description available.
Available since:0.17.0

Parameters

offsets GArrowArray
 

The offsets Array containing n + 1 offsets encoding length and size.

 The data is owned by the caller of the function.
keys GArrowArray
 

The Array containing key values.

 The data is owned by the caller of the function.
items GArrowArray
 

The items Array containing item values.

 The data is owned by the caller of the function.
error GError **
  The return location for a GError*, or NULL.

Return value

Returns: GArrowMapArray
 

A newly created GArrowMapArray or NULL on error.

 The caller of the function takes ownership of the data, and is responsible for freeing it.
 The return value can be NULL.