Constructor
GandivaFunctionSignaturenew
since: 0.14.0
Declaration [src]
GGandivaFunctionSignature*
ggandiva_function_signature_new (
const gchar* base_name,
GList* parameter_types,
GArrowDataType* return_type
)
Parameters
base_name
-
Type:
const gchar*
A base name of a function.
The data is owned by the caller of the function. The value is a NUL terminated UTF-8 string. parameter_types
-
Type: A list of
GArrowDataType*
A list of parameter data types.
The data is owned by the caller of the function. return_type
-
Type:
GArrowDataType
A return data type.
The data is owned by the caller of the function.
Return value
Type: GGandivaFunctionSignature
A GGandivaFunctionSignature
.
The caller of the function takes ownership of the data, and is responsible for freeing it. |