MCPcopy Create free account
hub / github.com/apache/arrow / garrow_function_options_to_string

Function garrow_function_options_to_string

c_glib/arrow-glib/compute.cpp:562–568  ·  view source on GitHub ↗

* garrow_function_options_to_string: * @options: A #GArrowFunctionOptions. * * Returns: The formatted options. * * It should be freed with g_free() when no longer needed. * * Since: 7.0.0 */

Source from the content-addressed store, hash-verified

560 * Since: 7.0.0
561 */
562gchar *
563garrow_function_options_to_string(GArrowFunctionOptions *options)
564{
565 auto arrow_options = garrow_function_options_get_raw(options);
566 auto string = arrow_options->ToString();
567 return g_strndup(string.data(), string.size());
568}
569
570typedef struct GArrowFunctionDocPrivate_
571{

Callers

nothing calls this directly

Calls 4

ToStringMethod · 0.45
dataMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected