Lines Matching refs:streams
3 …am` is a concept for reading/writing JSON. Here we first show how to use streams provided. And the…
9 Memory streams store JSON in memory.
91 Different from string streams, `FileReadStream` is byte stream. It does not handle encodings. If th…
124 Encoded streams do not contain JSON itself, but they wrap byte streams to provide basic encoding/de…
126 As mentioned above, UTF-8 byte streams can be read directly. However, UTF-16 and UTF-32 have endian…
130 …ntime, you may use `AutoUTFInputStream` and `AutoUTFOutputStream`. These streams are defined in `r…
132 …d streams can be applied to streams other than file. For example, you may have a file in memory, o…
239 In addition to memory/file streams, user can create their own stream classes which fits RapidJSON's…
276 …PutBegin()` and `PutEnd()`, which are only for *in situ* parsing. Normal streams do not implement …
326 Note that, this implementation may not be as efficient as RapidJSON's memory or file streams, due t…
370 Note that, this implementation may not be as efficient as RapidJSON's memory or file streams, due t…
374 …streams are simple. File stream can reduce the memory required during JSON parsing and generation,…