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

Method Double

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

Source from the content-addressed store, hash-verified

41 return _WriteUInt64(i);
42}
43bool skr_json_writer_t::Double(double d)
44{
45 _Prefix(SKR_JSONTYPE_NUMBER);
46 return _WriteDouble(d);
47}
48bool skr_json_writer_t::Float(float f)
49{
50 _Prefix(SKR_JSONTYPE_NUMBER);

Callers 1

WriteMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected