方法

ArrowFunctionexecute

自:1.0.0 起可用

声明 [源代码]

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

描述

暂无描述。

可用版本:1.0.0 起

参数

args

类型: None 列表

GArrowDatum 列表。

数据由函数调用者拥有。
options

类型: GArrowFunctionOptions

执行选项,作为实现 GArrowFunctionOptions 的对象。

该参数可以为 NULL
数据由函数调用者拥有。
context

类型: GArrowExecuteContext

用于执行的 GArrowExecuteContext

该参数可以为 NULL
数据由函数调用者拥有。
error

类型: GError **

用于返回可恢复错误的位置。

该参数可以为 NULL
如果返回位置不为 NULL,则必须将其初始化为 NULL GError*
如果没有错误,该方法将使参数保持初始化为 NULL 的状态。
如果发生错误,该参数将设置为新分配的 GError;调用者将拥有该数据的所有权,并负责释放它。

返回值

类型: GArrowDatum

执行的返回值,成功时为 GArrowDatum,错误时为 NULL

方法的调用者拥有该数据的所有权,并负责释放它。
返回值可以为 NULL