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

Method Int64

rapidjson/schema.h:175–175  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

173 bool Int(int i) { Number n; n.u.i = i; n.d = static_cast<double>(i); return WriteNumber(n); }
174 bool Uint(unsigned u) { Number n; n.u.u = u; n.d = static_cast<double>(u); return WriteNumber(n); }
175 bool Int64(int64_t i) { Number n; n.u.i = i; n.d = static_cast<double>(i); return WriteNumber(n); }
176 bool Uint64(uint64_t u) { Number n; n.u.u = u; n.d = static_cast<double>(u); return WriteNumber(n); }
177 bool Double(double d) {
178 Number n;

Callers 1

SerializeFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected