Z3
 
Loading...
Searching...
No Matches
Public Member Functions
ast_vector_tpl< T >::iterator Class Referencefinal

#include <z3++.h>

Public Member Functions

 iterator (ast_vector_tpl const *v, unsigned i)
 
bool operator== (iterator const &other) const noexcept
 
bool operator!= (iterator const &other) const noexcept
 
iteratoroperator++ () noexcept
 
void set (T &arg)
 
iterator operator++ (int) noexcept
 
Toperator-> () const
 
T operator* () const
 

Detailed Description

template<typename T>
class z3::ast_vector_tpl< T >::iterator

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

Constructor & Destructor Documentation

◆ iterator()

template<typename T >
iterator ( ast_vector_tpl const v,
unsigned  i 
)
inline

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

698: m_vector(v), m_index(i) {}

Member Function Documentation

◆ operator!=()

template<typename T >
bool operator!= ( iterator const other) const
inlinenoexcept

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

703 {
704 return other.m_index != m_index;
705 };

◆ operator*()

template<typename T >
T operator* ( ) const
inline

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

715{ return (*m_vector)[m_index]; }

Referenced by ast_vector_tpl< T >::iterator::operator->().

◆ operator++() [1/2]

template<typename T >
iterator & operator++ ( )
inlinenoexcept

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

706 {
707 ++m_index;
708 return *this;
709 }

◆ operator++() [2/2]

template<typename T >
iterator operator++ ( int  )
inlinenoexcept

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

713{ iterator tmp = *this; ++m_index; return tmp; }
iterator(ast_vector_tpl const *v, unsigned i)
Definition z3++.h:698

◆ operator->()

template<typename T >
T * operator-> ( ) const
inline

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

714{ return &(operator*()); }

◆ operator==()

template<typename T >
bool operator== ( iterator const other) const
inlinenoexcept

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

700 {
701 return other.m_index == m_index;
702 };

◆ set()

template<typename T >
void set ( T arg)
inline

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

710 {
711 Z3_ast_vector_set(m_vector->ctx(), *m_vector, m_index, arg);
712 }
context & ctx() const
Definition z3++.h:544
void Z3_API Z3_ast_vector_set(Z3_context c, Z3_ast_vector v, unsigned i, Z3_ast a)
Update position i of the AST vector v with the AST a.