* 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 */
| 560 | * Since: 7.0.0 |
| 561 | */ |
| 562 | gchar * |
| 563 | garrow_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 | |
| 570 | typedef struct GArrowFunctionDocPrivate_ |
| 571 | { |
nothing calls this directly
no test coverage detected