| PPL C Language Interface
    1.2
    | 
Types and functions for iterating on generator systems. More...
#include <ppl_c_header.h>
| Related Functions | |
| (Note that these are not member functions.) | |
| Constructors, Assignment and Destructor | |
| int | ppl_new_Generator_System_const_iterator (ppl_Generator_System_const_iterator_t *pgit) | 
| Builds a new `const iterator' and writes a handle to it at address pgit. | |
| int | ppl_new_Generator_System_const_iterator_from_Generator_System_const_iterator (ppl_Generator_System_const_iterator_t *pgit, ppl_const_Generator_System_const_iterator_t git) | 
| Builds a const iterator that is a copy of git; writes a handle for the newly created const iterator at addresspgit. | |
| int | ppl_assign_Generator_System_const_iterator_from_Generator_System_const_iterator (ppl_Generator_System_const_iterator_t dst, ppl_const_Generator_System_const_iterator_t src) | 
| Assigns a copy of the const iterator srctodst. | |
| int | ppl_delete_Generator_System_const_iterator (ppl_const_Generator_System_const_iterator_t git) | 
| Invalidates the handle git:this makes sure the corresponding resources will eventually be released. | |
| Dereferencing, Incrementing and Equality Testing | |
| int | ppl_Generator_System_const_iterator_dereference (ppl_const_Generator_System_const_iterator_t git, ppl_const_Generator_t *pg) | 
| Dereference gitwriting a const handle to the resulting generator at addresspg. | |
| int | ppl_Generator_System_const_iterator_increment (ppl_Generator_System_const_iterator_t git) | 
| Increment gitso that it "points" to the next generator. | |
| int | ppl_Generator_System_const_iterator_equal_test (ppl_const_Generator_System_const_iterator_t x, ppl_const_Generator_System_const_iterator_t y) | 
| Returns a positive integer if the iterators corresponding to xandyare equal; returns 0 if they are different. | |
Types and functions for iterating on generator systems.
The types and functions for generator systems iterators provide read-only access to the elements of a generator system by interfacing Generator_System::const_iterator.