Method

ArrowArrayfilter

Declaration [src]

GArrowArray*
garrow_array_filter (
  GArrowArray* array,
  GArrowBooleanArray* filter,
  GArrowFilterOptions* options,
  GError** error
)

Description

No description available.
Available since:0.15.0

Parameters

filter GArrowBooleanArray
 

The values indicates which values should be filtered out.

 The data is owned by the caller of the function.
options GArrowFilterOptions
 

A GArrowFilterOptions.

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

Return value

Returns: GArrowArray
 

The GArrowArray filtered with a boolean selection filter. Nulls in the filter will result in nulls in the output.

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