Method

ArrowFunctionexecute

Declaration [src]

GArrowDatum*
garrow_function_execute (
  GArrowFunction* function,
  GList* args,
  GArrowFunctionOptions* options,
  GArrowExecuteContext* context,
  GError** error
)

Description

No description available.
Available since:1.0.0

Parameters

args A list of None
 

A list of GArrowDatum.

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

Options for the execution as an object that implements GArrowFunctionOptions.

 The argument can be NULL.
 The data is owned by the caller of the function.
context GArrowExecuteContext
 

A GArrowExecuteContext for the execution.

 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: GArrowDatum
 

A return value of the execution as GArrowDatum on success, NULL on error.

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