• Home
  • Raw
  • Download

Lines Matching refs:can

53 …ty is 256 characters (256 bytes for UTF8, 512 bytes for UTF16, etc.). User can provide an allocato…
68 However, if the JSON is big, or memory is limited, you can use `FileReadStream`. It only read a par…
91 …m. It does not handle encodings. If the file is not UTF-8, the byte stream can be wrapped in a `En…
93 Apart from reading file, user can also use `FileReadStream` to read `stdin`.
120 It can also directs the output to `stdout`.
126 As mentioned above, UTF-8 byte streams can be read directly. However, UTF-16 and UTF-32 have endian…
128 …etect or just consume the BOM if exists. When writing to a byte stream, it can optionally write BO…
130 … you may use `EncodedInputStream` and `EncodedOutputStream`. If the stream can be UTF-8, UTF-16LE,…
132 Note that, these encoded streams can be applied to streams other than file. For example, you may ha…
189 …it, 16-bit or 32-bit. `AutoUTFInputStream` requires a character type which can hold at least 32-bi…
214 You can obtain the type of UTF via `UTFType GetType()`. And check whether a BOM is found by `HasBOM…
218 Similarly, to choose encoding for output during runtime, we can use `AutoUTFOutputStream`. This cla…
239 In addition to memory/file streams, user can create their own stream classes which fits RapidJSON's…
241 RapidJSON combines different types using templates. A class containing all required interface can b…
315 User can use it to wrap instances of `std::stringstream`, `std::ifstream`.
357 User can use it to wrap instances of `std::stringstream`, `std::ofstream`.
374 …eam classes available in RapidJSON. Memory streams are simple. File stream can reduce the memory r…