#include "rapidjson.h"
#include "encodings.h"
Go to the source code of this file.
◆ InsituStringStream
◆ StringStream
◆ PutN()
template<typename
Stream , typename
Ch >
void PutN |
( |
Stream & | stream, |
|
|
Ch | c, |
|
|
size_t | n ) |
|
inline |
Definition at line 97 of file stream.h.
97 {
99 for (size_t i = 0; i < n; i++)
101}
void PutReserve(Stream &stream, size_t count)
Reserve n characters for writing to a stream.
void PutUnsafe(Stream &stream, typename Stream::Ch c)
Write character to a stream, presuming buffer is reserved.
◆ PutReserve()
void PutReserve |
( |
Stream & | stream, |
|
|
size_t | count ) |
|
inline |
Definition at line 84 of file stream.h.
84 {
85 (void)stream;
87}
◆ PutUnsafe()
Definition at line 91 of file stream.h.
91 {
92 stream.Put(c);
93}