Translations:KDevelop5/Manual/Working with source code/176/uk: Difference between revisions
Appearance
	
	
| No edit summary | No edit summary | ||
| Line 1: | Line 1: | ||
| <syntaxhighlight lang="cpp" line> | |||
| for (typename Triangulation<dim,spacedim>::active_cell_iterator; | for (typename Triangulation<dim,spacedim>::active_cell_iterator; | ||
|       cell = triangulation.begin_active(); |       cell = triangulation.begin_active(); | ||
|       cell != triangulation.end(); ++cell) |       cell != triangulation.end(); ++cell) | ||
|           ...  |           ... Робимо щось із cell ... | ||
| </ | </syntaxhighlight> | ||
Latest revision as of 12:38, 4 April 2020
for (typename Triangulation<dim,spacedim>::active_cell_iterator;
     cell = triangulation.begin_active();
     cell != triangulation.end(); ++cell)
         ... Робимо щось із cell ...