| PPL
    1.2
    | 
An iterator over a system of generators. More...
#include <ppl.hh>
Inherits iterator< std::forward_iterator_tag, Generator, std::ptrdiff_t, const Generator *, const Generator & >.
| Public Member Functions | |
| Generator_System_const_iterator () | |
| Default constructor. | |
| Generator_System_const_iterator (const Generator_System_const_iterator &y) | |
| Ordinary copy constructor. | |
| ~Generator_System_const_iterator () | |
| Destructor. | |
| Generator_System_const_iterator & | operator= (const Generator_System_const_iterator &y) | 
| Assignment operator. | |
| const Generator & | operator* () const | 
| Dereference operator. | |
| const Generator * | operator-> () const | 
| Indirect member selector. | |
| Generator_System_const_iterator & | operator++ () | 
| Prefix increment operator. | |
| Generator_System_const_iterator | operator++ (int) | 
| Postfix increment operator. | |
| bool | operator== (const Generator_System_const_iterator &y) const | 
| Returns trueif and only if*thisandyare identical. | |
| bool | operator!= (const Generator_System_const_iterator &y) const | 
| Returns trueif and only if*thisandyare different. | |
An iterator over a system of generators.
A const_iterator is used to provide read-only access to each generator contained in an object of Generator_System.
ph: