openfoam/applications/test/ICharStream1
Mark Olesen 3693d61e6c ENH: refine SpanStream and CharStream methods
- support std::string_view (c++17) or span view (older c++) of stream
  buffer contents. This simplifies formatting + reparsing.

  Example,

      OCharStream os;
      os << ...;

      ISpanStream is(os.view());
      is >> ...;

- additional release() method for ICharStream, OCharStream
  that returns the contents as a DynamicList<char> and resets the stream.

- provide a str() method for API compatibility with older
  std::ostringstream etc.
2023-10-11 18:11:37 +00:00
..
Make ENH: update and enhancement of memory-streams 2023-09-01 14:44:49 +00:00
Test-ICharStream1.C ENH: refine SpanStream and CharStream methods 2023-10-11 18:11:37 +00:00