MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / WriteInt

Method WriteInt

Source/ThirdParty/rapidjson/writer.h:519–524  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

517
518template<>
519inline bool Writer<StringBuffer>::WriteInt(int i) {
520 char *buffer = os_->Push(11);
521 const char* end = internal::i32toa(i, buffer);
522 os_->Pop(static_cast<size_t>(11 - (end - buffer)));
523 return true;
524}
525
526template<>
527inline bool Writer<StringBuffer>::WriteUint(unsigned u) {

Callers

nothing calls this directly

Calls 3

i32toaFunction · 0.85
PushMethod · 0.45
PopMethod · 0.45

Tested by

no test coverage detected