| 
    basix_doc 0.1 
   | 
 
#include <iterator.hpp>
Definition at line 195 of file iterator.hpp.
| as_iterator_rep | ( | const iterator< S > & | it, | 
| const format< C > & | fm | ||
| ) |  [inline] | 
        
Definition at line 199 of file iterator.hpp.
                                                           :
    Iterator_rep (fm), it_S (it) {}
| void advance | ( | ) |  [inline, protected] | 
        
Definition at line 205 of file iterator.hpp.
{ ++ it_S; }
| iterator_rep<C>* clone | ( | ) |  [inline, protected] | 
        
Definition at line 208 of file iterator.hpp.
References Format.
                         {
    return new as_iterator_rep (it_S, (Format) *this); }
| C current | ( | ) |  [inline, protected] | 
        
Definition at line 207 of file iterator.hpp.
{ return as<C> (* it_S); }
| bool is_busy | ( | ) |  [inline, protected] | 
        
| bool is_init | ( | ) |  [inline, protected] | 
        
| void regress | ( | ) |  [inline, protected] | 
        
Definition at line 206 of file iterator.hpp.
{ -- it_S; }