to_func_decl method

Z3_func_decl to_func_decl(
  1. Z3_context c,
  2. Z3_ast a
)

\brief Convert an AST into a FUNC_DECL_AST. This is just type casting.

\pre \code Z3_get_ast_kind(c, a) == Z3_FUNC_DECL_AST \endcode

def_API('Z3_to_func_decl', FUNC_DECL, (_in(CONTEXT), _in(AST)))

Implementation

Z3_func_decl to_func_decl(
  Z3_context c,
  Z3_ast a,
) {
  return _to_func_decl(
    c,
    a,
  );
}