Arcane  4.1.12.0
Developer documentation
Loading...
Searching...
No Matches
Stream Class Reference

Concept for reading and writing characters. More...

#include </__w/arcaneframework.github.io/arcaneframework.github.io/framework/arccore/src/common/arccore/common/internal/json/rapidjson/stream.h>

Collaboration diagram for Stream:

Detailed Description

Concept for reading and writing characters.

For read-only stream, no need to implement PutBegin(), Put(), Flush() and PutEnd().

For write-only stream, only need to implement Put() and Flush().

concept Stream {
typename Ch;
Ch Peek() const;
Ch Take();
size_t Tell();
Ch* PutBegin();
void Put(Ch c);
void Flush();
size_t PutEnd(Ch* begin);
}
Concept for reading and writing characters.

The documentation for this class was generated from the following file: