#include <expr.h>
Inheritance diagram for CVC3::Expr::iterator:
Definition at line 226 of file expr.h.
CVC3::Expr::iterator::iterator | ( | std::vector< Expr >::const_iterator | it | ) | [inline, private] |
Construct an iterator out of the vector's iterator.
Reimplemented from CVC3::Expr::iterator< std::input_iterator_tag, Expr, ptrdiff_t >.
Reimplemented in CVC3::Expr::iterator.
CVC3::Expr::iterator::iterator | ( | ) | [inline] |
Default constructor.
Reimplemented from CVC3::Expr::iterator< std::input_iterator_tag, Expr, ptrdiff_t >.
Reimplemented in CVC3::Expr::iterator.
bool CVC3::Expr::iterator::operator== | ( | const iterator & | i | ) | const [inline] |
Equality.
Reimplemented from CVC3::Expr::iterator< std::input_iterator_tag, Expr, ptrdiff_t >.
Reimplemented in CVC3::Expr::iterator.
bool CVC3::Expr::iterator::operator!= | ( | const iterator & | i | ) | const [inline] |
Disequality.
Reimplemented from CVC3::Expr::iterator< std::input_iterator_tag, Expr, ptrdiff_t >.
Reimplemented in CVC3::Expr::iterator.
const Expr& CVC3::Expr::iterator::operator * | ( | ) | const [inline] |
Dereference operator.
Reimplemented from CVC3::Expr::iterator< std::input_iterator_tag, Expr, ptrdiff_t >.
Reimplemented in CVC3::Expr::iterator.
const Expr* CVC3::Expr::iterator::operator-> | ( | ) | const [inline] |
Dereference and member access.
Reimplemented from CVC3::Expr::iterator< std::input_iterator_tag, Expr, ptrdiff_t >.
Reimplemented in CVC3::Expr::iterator.
iterator& CVC3::Expr::iterator::operator++ | ( | ) | [inline] |
Prefix increment.
Reimplemented from CVC3::Expr::iterator< std::input_iterator_tag, Expr, ptrdiff_t >.
Reimplemented in CVC3::Expr::iterator.
Proxy CVC3::Expr::iterator::operator++ | ( | int | ) | [inline] |
Postfix increment.
Now, an expression like *i++ will return the current *i, and then advance the iterator. However, don't try to use Proxy for anything else.
Reimplemented from CVC3::Expr::iterator< std::input_iterator_tag, Expr, ptrdiff_t >.
Reimplemented in CVC3::Expr::iterator.
friend class Expr [friend] |
Reimplemented from CVC3::Expr::iterator< std::input_iterator_tag, Expr, ptrdiff_t >.
Reimplemented in CVC3::Expr::iterator.
std::vector<Expr>::const_iterator CVC3::Expr::iterator::d_it [private] |
Reimplemented from CVC3::Expr::iterator< std::input_iterator_tag, Expr, ptrdiff_t >.
Reimplemented in CVC3::Expr::iterator.
Definition at line 231 of file expr.h.
Referenced by CVC3::Expr::iterator< std::input_iterator_tag, Expr, ptrdiff_t >::operator==().