* ggandiva_node_to_string: * @node: A #GGandivaNode. * * Returns: (transfer full): The string representation of the node. * * It should be freed with g_free() when no longer needed. * * Since: 1.0.0 */
| 230 | * Since: 1.0.0 |
| 231 | */ |
| 232 | gchar * |
| 233 | ggandiva_node_to_string(GGandivaNode *node) |
| 234 | { |
| 235 | auto gandiva_node = ggandiva_node_get_raw(node); |
| 236 | auto string = gandiva_node->ToString(); |
| 237 | return g_strndup(string.data(), string.size()); |
| 238 | } |
| 239 | |
| 240 | typedef struct GGandivaFieldNodePrivate_ |
| 241 | { |