openfoam/applications/utilities
Mark Olesen 5680ce1ee2 STYLE: use spanstream instead of stringstream in more places
- particularly useful in these combinations:

  1.
      OCharStream buf;
      // populate

      ISpanStream is(buf.view());
      // parse

  2.
      // read from file
      ifile.getLine(str);

      ISpanStream is(str);
      // parse

  These avoid making a copy of the character content, compared to
  versions with stringstream:

      OStringStream buf;
      IStringStream is(buf.str());
2024-03-07 15:04:54 +01:00
..
doc GIT: Header file updates 2019-10-31 14:48:44 +00:00
finiteArea ENH: make ITstream positioning methods noexcept 2024-03-06 11:01:57 +01:00
mesh STYLE: use spanstream instead of stringstream in more places 2024-03-07 15:04:54 +01:00
miscellaneous ENH: use tmp field factory methods [12] (#2723) 2024-02-21 14:31:40 +01:00
parallelProcessing ENH: adjust renumbering methods, extend renumberMesh options 2024-03-06 17:58:47 +01:00
postProcessing STYLE: use static call for regIOobject::store (#1507) 2024-02-20 16:56:22 +01:00
preProcessing STYLE: use spanstream instead of stringstream in more places 2024-03-07 15:04:54 +01:00
surface ENH: add surface patch index to surfaceCheck output 2024-03-05 16:18:02 +01:00
thermophysical STYLE: use spanstream instead of stringstream in more places 2024-03-07 15:04:54 +01:00