Constructor
ArrowCallExpressionnew
since: 6.0.0
Declaration [src]
GArrowCallExpression*
garrow_call_expression_new (
const gchar* function,
GList* arguments,
GArrowFunctionOptions* options
)
Parameters
function
-
Type:
const gchar*
A name of function to be called.
The data is owned by the caller of the function. The value is a NUL terminated UTF-8 string. arguments
-
Type: A list of
None
Arguments of this call.
The data is owned by the caller of the function. options
-
Type:
GArrowFunctionOptions
A
GArrowFunctionOptions
for the called function.The argument can be NULL
.The data is owned by the caller of the function.
Return value
Type: GArrowCallExpression
A newly created GArrowCallExpression
.
The caller of the function takes ownership of the data, and is responsible for freeing it. |