Z3
 
Loading...
Searching...
No Matches
cast_ast< func_decl > Class Reference

#include <z3++.h>

Public Member Functions

func_decl operator() (context &c, Z3_ast a)
 

Detailed Description

Definition at line 2306 of file z3++.h.

Member Function Documentation

◆ operator()()

func_decl operator() ( context & c,
Z3_ast a )
inline

Definition at line 2308 of file z3++.h.

2308 {
2309 assert(Z3_get_ast_kind(c, a) == Z3_FUNC_DECL_AST);
2310 return func_decl(c, reinterpret_cast<Z3_func_decl>(a));
2311 }
Z3_ast_kind Z3_API Z3_get_ast_kind(Z3_context c, Z3_ast a)
Return the kind of the given AST.
@ Z3_FUNC_DECL_AST
Definition z3_api.h:147