Z3
Public Member Functions
cast_ast< sort > Class Template Reference

Public Member Functions

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

Detailed Description

template<>
class z3::cast_ast< sort >

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

Member Function Documentation

◆ operator()()

sort operator() ( context c,
Z3_ast  a 
)
inline

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

1510  {
1511  assert(Z3_get_ast_kind(c, a) == Z3_SORT_AST);
1512  return sort(c, reinterpret_cast<Z3_sort>(a));
1513  }
Z3_ast_kind Z3_API Z3_get_ast_kind(Z3_context c, Z3_ast a)
Return the kind of the given AST.