Types and functions for iterating on grid generator systems. More...
#include <ppl_c.h>
Related Functions | |
(Note that these are not member functions.) | |
Constructors, Assignment and Destructor | |
| int | ppl_new_Grid_Generator_System_const_iterator (ppl_Grid_Generator_System_const_iterator_t *pgit) |
Builds a new `const iterator' and writes a handle to it at address pgit. | |
| int | ppl_new_Grid_Generator_System_const_iterator_from_Grid_Generator_System_const_iterator (ppl_Grid_Generator_System_const_iterator_t *pgit, ppl_const_Grid_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 address pgit. | |
| int | ppl_assign_Grid_Generator_System_const_iterator_from_Grid_Generator_System_const_iterator (ppl_Grid_Generator_System_const_iterator_t dst, ppl_const_Grid_Generator_System_const_iterator_t src) |
Assigns a copy of the const iterator src to dst. | |
| int | ppl_delete_Grid_Generator_System_const_iterator (ppl_const_Grid_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_Grid_Generator_System_const_iterator_dereference (ppl_const_Grid_Generator_System_const_iterator_t git, ppl_const_Grid_Generator_t *pg) |
Dereference git writing a const handle to the resulting grid generator at address pg. | |
| int | ppl_Grid_Generator_System_const_iterator_increment (ppl_Grid_Generator_System_const_iterator_t git) |
Increment git so that it "points" to the next grid generator. | |
| int | ppl_Grid_Generator_System_const_iterator_equal_test (ppl_const_Grid_Generator_System_const_iterator_t x, ppl_const_Grid_Generator_System_const_iterator_t y) |
Returns a positive integer if the iterators corresponding to x and y are equal; returns 0 if they are different. | |
Types and functions for iterating on grid generator systems.
The types and functions for grid generator systems iterators provide read-only access to the elements of a grid generator system by interfacing Grid_Generator_System::const_iterator.
| int ppl_assign_Grid_Generator_System_const_iterator_from_Grid_Generator_System_const_iterator | ( | ppl_Grid_Generator_System_const_iterator_t | dst, | |
| ppl_const_Grid_Generator_System_const_iterator_t | src | |||
| ) | [related] |
Assigns a copy of the const iterator src to dst.
Definition at line 1802 of file ppl_c_implementation_common.cc.
| int ppl_delete_Grid_Generator_System_const_iterator | ( | ppl_const_Grid_Generator_System_const_iterator_t | git | ) | [related] |
Invalidates the handle git: this makes sure the corresponding resources will eventually be released.
Definition at line 1794 of file ppl_c_implementation_common.cc.
| int ppl_Grid_Generator_System_const_iterator_dereference | ( | ppl_const_Grid_Generator_System_const_iterator_t | git, | |
| ppl_const_Grid_Generator_t * | pg | |||
| ) | [related] |
Dereference git writing a const handle to the resulting grid generator at address pg.
Definition at line 1835 of file ppl_c_implementation_common.cc.
| int ppl_Grid_Generator_System_const_iterator_equal_test | ( | ppl_const_Grid_Generator_System_const_iterator_t | x, | |
| ppl_const_Grid_Generator_System_const_iterator_t | y | |||
| ) | [related] |
Returns a positive integer if the iterators corresponding to x and y are equal; returns 0 if they are different.
Definition at line 1855 of file ppl_c_implementation_common.cc.
| int ppl_Grid_Generator_System_const_iterator_increment | ( | ppl_Grid_Generator_System_const_iterator_t | git | ) | [related] |
Increment git so that it "points" to the next grid generator.
Definition at line 1846 of file ppl_c_implementation_common.cc.
| int ppl_new_Grid_Generator_System_const_iterator | ( | ppl_Grid_Generator_System_const_iterator_t * | pgit | ) | [related] |
Builds a new `const iterator' and writes a handle to it at address pgit.
Definition at line 1776 of file ppl_c_implementation_common.cc.
| int ppl_new_Grid_Generator_System_const_iterator_from_Grid_Generator_System_const_iterator | ( | ppl_Grid_Generator_System_const_iterator_t * | pgit, | |
| ppl_const_Grid_Generator_System_const_iterator_t | git | |||
| ) | [related] |
Builds a const iterator that is a copy of git; writes a handle for the newly created const iterator at address pgit.
Definition at line 1784 of file ppl_c_implementation_common.cc.
1.6.3