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

Method EncodeUnsafe

rapidjson/encodings.h:554–557  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

552
553 template<typename OutputStream>
554 static void EncodeUnsafe(OutputStream& os, unsigned codepoint) {
555 RAPIDJSON_ASSERT(codepoint <= 0x7F);
556 PutUnsafe(os, static_cast<Ch>(codepoint & 0xFF));
557 }
558
559 template <typename InputStream>
560 static bool Decode(InputStream& is, unsigned* codepoint) {

Callers

nothing calls this directly

Calls 1

PutUnsafeFunction · 0.70

Tested by

no test coverage detected