openfoam/applications/solvers
Mark Olesen 07dafe7b0b STYLE: use range-for when looping dictionary entries.
- as part of the cleanup of dictionary access methods (c6520033c9)
  made the dictionary class single inheritance from IDLList<entry>.

  This eliminates any ambiguities for iterators and allows
  for simple use of range-for looping.

  Eg,
      for (const entry& e : topDict))
      {
          Info<< "entry:" << e.keyword() << " is dict:" << e.isDict() << nl;
      }

   vs

      forAllConstIter(dictionary, topDict, iter))
      {
          Info<< "entry:" << iter().keyword()
              << " is dict:" << iter().isDict() << nl;
      }
2018-10-19 13:08:24 +02:00
..
basic ENH: ignore -noFunctionObjects option when disabled 2018-08-08 09:44:28 +02:00
combustion ENH: use dictionary::get<word>() instead of lookup() in a few places 2018-10-19 09:11:31 +02:00
compressible Merge branch 'develop' of develop.openfoam.com:Development/OpenFOAM-plus into develop 2018-10-17 10:29:34 -07:00
discreteMethods ENH: avoid readScalar, readLabel etc from dictionary (#762, #1033) 2018-10-12 08:14:47 +02:00
DNS COMP: Allwmake: pass through targetType 2018-09-26 14:32:32 +01:00
doc STYLE: finiteArea doc and style updates 2017-12-18 11:25:53 +00:00
electromagnetics ENH: tag some options as 'advanced' (only shown with -help-full) 2018-07-31 11:54:15 +02:00
financial ENH: make format of ExecutionTime = ... output configurable (issue #788) 2018-04-27 15:00:34 +02:00
finiteArea STYLE: remove spacing around forAll macros and template '> >' closing 2018-07-06 11:03:28 +02:00
heatTransfer ENH: use dictionary::get<word>() instead of lookup() in a few places 2018-10-19 09:11:31 +02:00
incompressible ENH: 2018-10-17 10:10:06 -07:00
lagrangian ENH: use dictionary::get<word>() instead of lookup() in a few places 2018-10-19 09:11:31 +02:00
multiphase STYLE: use range-for when looping dictionary entries. 2018-10-19 13:08:24 +02:00
stressAnalysis ENH: avoid readScalar, readLabel etc from dictionary (#762, #1033) 2018-10-12 08:14:47 +02:00