Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
}
23
bool skr_json_writer_t::Int(int32_t i)
24
{
25
_Prefix(SKR_JSONTYPE_NUMBER);
26
return _WriteInt(i);
27
}
28
bool skr_json_writer_t::UInt(uint32_t i)
29
{
30
_Prefix(SKR_JSONTYPE_NUMBER);
Callers
4
load_scheme
Method · 0.45
Write
Method · 0.45
main
Function · 0.45
load_scheme
Method · 0.45
Calls
no outgoing calls
Tested by
1
load_scheme
Method · 0.36