get_as_array_func_decl method
\brief Return the function declaration \c f associated with a \ccode{(_ as_array f)} node.
\sa Z3_is_as_array
def_API('Z3_get_as_array_func_decl', FUNC_DECL, (_in(CONTEXT), _in(AST)))
Implementation
Z3_func_decl get_as_array_func_decl(
Z3_context c,
Z3_ast a,
) {
return _get_as_array_func_decl(
c,
a,
);
}