16#ifndef RAPIDJSON_MEMORYSTREAM_H_
17#define RAPIDJSON_MEMORYSTREAM_H_
23RAPIDJSON_DIAG_OFF(unreachable-code)
24RAPIDJSON_DIAG_OFF(missing-noreturn)
48 size_t Tell()
const {
return static_cast<size_t>(
src_ -
begin_); }
56 const Ch* Peek4()
const {
#define RAPIDJSON_UNLIKELY(x)
Compiler branching hint for expression with low probability to be true.
#define RAPIDJSON_ASSERT(x)
Assertion.
#define RAPIDJSON_NAMESPACE_BEGIN
provide custom rapidjson namespace (opening expression)
#define RAPIDJSON_NAMESPACE_END
provide custom rapidjson namespace (closing expression)
Represents an in-memory input byte stream.
const Ch * end_
End of stream.
const Ch * src_
Current read position.
const Ch * begin_
Original head of the string.
size_t size_
Size of the stream.