Translations:KDevelop5/Manual/Working with source code/176/uk: Difference between revisions

From KDE UserBase Wiki
(Created page with "{{Input|1=<nowiki> for (typename Triangulation<dim,spacedim>::active_cell_iterator; cell = triangulation.begin_active(); cell != triangulation.end(); ++cell)...")
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
{{Input|1=<nowiki>
<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)
         ... do something with the cell ...
         ... Робимо щось із cell ...
</nowiki>}}
</syntaxhighlight>

Latest revision as of 12:38, 4 April 2020

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (KDevelop5/Manual/Working with source code)
<syntaxhighlight lang="cpp" line>
for (typename Triangulation<dim,spacedim>::active_cell_iterator;
     cell = triangulation.begin_active();
     cell != triangulation.end(); ++cell)
         ... do something with the cell ...
</syntaxhighlight>
for (typename Triangulation<dim,spacedim>::active_cell_iterator;
     cell = triangulation.begin_active();
     cell != triangulation.end(); ++cell)
         ... Робимо щось із cell ...