Z3
Public Member Functions
expr::iterator Class Reference

#include <z3++.h>

Public Member Functions

 iterator (expr &e, unsigned i)
 
bool operator== (iterator const &other) noexcept
 
bool operator!= (iterator const &other) noexcept
 
expr operator* () const
 
iteratoroperator++ ()
 
iterator operator++ (int)
 

Detailed Description

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

Constructor & Destructor Documentation

◆ iterator()

iterator ( expr e,
unsigned  i 
)
inline

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

1574: e(e), i(i) {}

Member Function Documentation

◆ operator!=()

bool operator!= ( iterator const &  other)
inlinenoexcept

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

1578 {
1579 return i != other.i;
1580 }

◆ operator*()

expr operator* ( ) const
inline

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

1581{ return e.arg(i); }
expr arg(unsigned i) const
Return the i-th argument of this application. This method assumes the expression is an application.
Definition: z3++.h:1182

◆ operator++() [1/2]

iterator & operator++ ( )
inline

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

1582{ ++i; return *this; }

◆ operator++() [2/2]

iterator operator++ ( int  )
inline

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

1583{ assert(false); return *this; }

◆ operator==()

bool operator== ( iterator const &  other)
inlinenoexcept

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

1575 {
1576 return i == other.i;
1577 }