Z3
Public Member Functions
func_entry Class Reference
+ Inheritance diagram for func_entry:

Public Member Functions

 func_entry (context &c, Z3_func_entry e)
 
 func_entry (func_entry const &s)
 
 ~func_entry ()
 
 operator Z3_func_entry () const
 
func_entryoperator= (func_entry const &s)
 
expr value () const
 
unsigned num_args () const
 
expr arg (unsigned i) const
 
- Public Member Functions inherited from object
 object (context &c)
 
 object (object const &s)
 
contextctx () const
 
Z3_error_code check_error () const
 

Additional Inherited Members

- Protected Attributes inherited from object
contextm_ctx
 

Detailed Description

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

Constructor & Destructor Documentation

◆ func_entry() [1/2]

func_entry ( context c,
Z3_func_entry  e 
)
inline

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

2131 :object(c) { init(e); }
object(context &c)
Definition: z3++.h:404

◆ func_entry() [2/2]

func_entry ( func_entry const &  s)
inline

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

2132 :object(s) { init(s.m_entry); }
object(context &c)
Definition: z3++.h:404

◆ ~func_entry()

~func_entry ( )
inline

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

2133 { Z3_func_entry_dec_ref(ctx(), m_entry); }
context & ctx() const
Definition: z3++.h:406
void Z3_API Z3_func_entry_dec_ref(Z3_context c, Z3_func_entry e)
Decrement the reference counter of the given Z3_func_entry object.

Member Function Documentation

◆ arg()

expr arg ( unsigned  i) const
inline

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

2144 { Z3_ast r = Z3_func_entry_get_arg(ctx(), m_entry, i); check_error(); return expr(ctx(), r); }
Z3_error_code check_error() const
Definition: z3++.h:407
Z3_ast Z3_API Z3_func_entry_get_arg(Z3_context c, Z3_func_entry e, unsigned i)
Return an argument of a Z3_func_entry object.
context & ctx() const
Definition: z3++.h:406

Referenced by AstRef::__bool__().

◆ num_args()

unsigned num_args ( ) const
inline

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

2143 { unsigned r = Z3_func_entry_get_num_args(ctx(), m_entry); check_error(); return r; }
Z3_error_code check_error() const
Definition: z3++.h:407
context & ctx() const
Definition: z3++.h:406
unsigned Z3_API Z3_func_entry_get_num_args(Z3_context c, Z3_func_entry e)
Return the number of arguments in a Z3_func_entry object.

Referenced by AstRef::__bool__().

◆ operator Z3_func_entry()

operator Z3_func_entry ( ) const
inline

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

2134 { return m_entry; }

◆ operator=()

func_entry& operator= ( func_entry const &  s)
inline

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

2135  {
2136  Z3_func_entry_inc_ref(s.ctx(), s.m_entry);
2137  Z3_func_entry_dec_ref(ctx(), m_entry);
2138  m_ctx = s.m_ctx;
2139  m_entry = s.m_entry;
2140  return *this;
2141  }
context & ctx() const
Definition: z3++.h:406
void Z3_API Z3_func_entry_inc_ref(Z3_context c, Z3_func_entry e)
Increment the reference counter of the given Z3_func_entry object.
context * m_ctx
Definition: z3++.h:402
void Z3_API Z3_func_entry_dec_ref(Z3_context c, Z3_func_entry e)
Decrement the reference counter of the given Z3_func_entry object.

◆ value()

expr value ( ) const
inline

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

2142 { Z3_ast r = Z3_func_entry_get_value(ctx(), m_entry); check_error(); return expr(ctx(), r); }
Z3_error_code check_error() const
Definition: z3++.h:407
context & ctx() const
Definition: z3++.h:406
Z3_ast Z3_API Z3_func_entry_get_value(Z3_context c, Z3_func_entry e)
Return the value of this point.