MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / PutN

Function PutN

rapidjson/stream.h:97–101  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

95//! Put N copies of a character to a stream.
96template<typename Stream, typename Ch>
97inline void PutN(Stream& stream, Ch c, size_t n) {
98 PutReserve(stream, n);
99 for (size_t i = 0; i < n; i++)
100 PutUnsafe(stream, c);
101}
102
103///////////////////////////////////////////////////////////////////////////////
104// StringStream

Callers 1

WriteIndentMethod · 0.70

Calls 2

PutReserveFunction · 0.70
PutUnsafeFunction · 0.70

Tested by

no test coverage detected