func_decl_to_ast method

Z3_ast func_decl_to_ast(
  1. Z3_context c,
  2. Z3_func_decl f
)

\brief Convert a \c Z3_func_decl into \c Z3_ast. This is just type casting.

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

Implementation

Z3_ast func_decl_to_ast(
  Z3_context c,
  Z3_func_decl f,
) {
  return _func_decl_to_ast(
    c,
    f,
  );
}