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

Function garrow_function_get_doc

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

* garrow_function_get_doc: * @function: A #GArrowFunction. * * Returns: (transfer full): The function documentation. * * Since: 6.0.0 */

Source from the content-addressed store, hash-verified

895 * Since: 6.0.0
896 */
897GArrowFunctionDoc *
898garrow_function_get_doc(GArrowFunction *function)
899{
900 auto arrow_function = garrow_function_get_raw(function);
901 const auto &arrow_doc = arrow_function->doc();
902 return garrow_function_doc_new_raw(&arrow_doc);
903}
904
905/**
906 * garrow_function_get_default_options:

Callers

nothing calls this directly

Calls 2

garrow_function_get_rawFunction · 0.85

Tested by

no test coverage detected