openfoam/applications/test/router/Gather
Mark Olesen 5dc5ea928a ENH: add UPstream::subProcs() static method
- returns a range of `int` values that can be iterated across.
  For example,

      for (const int proci : Pstream::subProcs()) { ... }

  instead of

      for
      (
          int proci = Pstream::firstSlave();
          proci <= Pstream::lastSlave();
          ++proci
      )
      {
          ...
      }
2020-09-28 14:26:07 +02:00
..
Gather.C ENH: add UPstream::subProcs() static method 2020-09-28 14:26:07 +02:00
Gather.H GIT: Header file updates 2019-10-31 14:48:44 +00:00
GatherBase.C GIT: Header file updates 2019-10-31 14:48:44 +00:00
GatherBase.H GIT: Header file updates 2019-10-31 14:48:44 +00:00