MCPcopy Create free account
hub / github.com/SakuraEngine/SakuraEngine / Int

Method Int

modules/engine/runtime/serde/json/writer.cpp:23–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21 return _WriteBool(b);
22}
23bool skr_json_writer_t::Int(int32_t i)
24{
25 _Prefix(SKR_JSONTYPE_NUMBER);
26 return _WriteInt(i);
27}
28bool skr_json_writer_t::UInt(uint32_t i)
29{
30 _Prefix(SKR_JSONTYPE_NUMBER);

Callers 4

load_schemeMethod · 0.45
WriteMethod · 0.45
mainFunction · 0.45
load_schemeMethod · 0.45

Calls

no outgoing calls

Tested by 1

load_schemeMethod · 0.36