ast_map_to_string method
\brief Convert the given map into a string.
def_API('Z3_ast_map_to_string', STRING, (_in(CONTEXT), _in(AST_MAP)))
Implementation
Z3_string ast_map_to_string(
Z3_context c,
Z3_ast_map m,
) {
return _ast_map_to_string(
c,
m,
);
}