openfoam/applications/utilities/mesh/advanced
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
..
collapseEdges ENH: ignore -noFunctionObjects option when disabled 2018-08-08 09:44:28 +02:00
combinePatchFaces ENH: change argList get<> and getList<> from read<>, readList<> 2018-08-09 11:27:36 +02:00
modifyMesh STYLE: add nBoundaryFaces() method to primitiveMesh 2018-09-27 10:17:30 +02:00
PDRMesh STYLE: use range-for when looping dictionary entries. 2018-10-19 13:08:24 +02:00
refineHexMesh ENH: ignore -noFunctionObjects option when disabled 2018-08-08 09:44:28 +02:00
refinementLevel ENH: tag some options as 'advanced' (only shown with -help-full) 2018-07-31 11:54:15 +02:00
refineWallLayer ENH: change argList get<> and getList<> from read<>, readList<> 2018-08-09 11:27:36 +02:00
removeFaces ENH: ignore -noFunctionObjects option when disabled 2018-08-08 09:44:28 +02:00
selectCells ENH: use restricted dictionary lookup for utilities (issue #762) 2018-07-24 08:08:30 +02:00
snappyRefineMesh ENH: use restricted dictionary lookup for utilities (issue #762) 2018-07-24 08:08:30 +02:00
splitCells ENH: use vector::normalise and VectorSpace::normalised for clarity 2018-08-10 15:18:29 +02:00