* garrow_function_get_doc: * @function: A #GArrowFunction. * * Returns: (transfer full): The function documentation. * * Since: 6.0.0 */
| 895 | * Since: 6.0.0 |
| 896 | */ |
| 897 | GArrowFunctionDoc * |
| 898 | garrow_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: |
nothing calls this directly
no test coverage detected